Don't mark function that throws exception noexcept

This commit is contained in:
Osyotr
2025-07-25 18:35:37 +03:00
committed by Thomas Krijnen
parent 1ac5a8d785
commit bf7171b7ba
+2 -2
View File
@@ -193,7 +193,7 @@ public:
free_();
}
std::size_t index(std::size_t index) const noexcept {
std::size_t index(std::size_t index) const {
if (index >= size()) {
throw IfcParse::IfcException(
"Index " + std::to_string(index) + " is out of range for variant of size " + std::to_string(size())
@@ -337,4 +337,4 @@ private:
}
};
#endif
#endif