We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4493e4 commit 6d1c298Copy full SHA for 6d1c298
1 file changed
include/osp/bsp/model/BspInstance.hpp
@@ -113,10 +113,10 @@ class BspInstance {
113
}
114
115
BspInstance(const BspInstance<Graph_t> &other) = default;
116
- BspInstance(BspInstance<Graph_t> &&other) = default;
+ BspInstance(BspInstance<Graph_t> &&other) noexcept = default;
117
118
BspInstance<Graph_t> &operator=(const BspInstance<Graph_t> &other) = default;
119
- BspInstance<Graph_t> &operator=(BspInstance<Graph_t> &&other) = default;
+ BspInstance<Graph_t> &operator=(BspInstance<Graph_t> &&other) noexcept = default;
120
121
/**
122
* @brief Returns a reference to the BSP architecture for the instance.
0 commit comments