Skip to content

Commit 6d1c298

Browse files
committed
noexcept
1 parent e4493e4 commit 6d1c298

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

include/osp/bsp/model/BspInstance.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +113,10 @@ class BspInstance {
113113
}
114114

115115
BspInstance(const BspInstance<Graph_t> &other) = default;
116-
BspInstance(BspInstance<Graph_t> &&other) = default;
116+
BspInstance(BspInstance<Graph_t> &&other) noexcept = default;
117117

118118
BspInstance<Graph_t> &operator=(const BspInstance<Graph_t> &other) = default;
119-
BspInstance<Graph_t> &operator=(BspInstance<Graph_t> &&other) = default;
119+
BspInstance<Graph_t> &operator=(BspInstance<Graph_t> &&other) noexcept = default;
120120

121121
/**
122122
* @brief Returns a reference to the BSP architecture for the instance.

0 commit comments

Comments
 (0)