Parameter naming

This commit is contained in:
Thomas Krijnen
2026-03-31 18:23:13 +02:00
parent a07f56db6f
commit 20ccf2b455
24 changed files with 619 additions and 605 deletions
+2 -2
View File
@@ -49,8 +49,8 @@ class IFC_PARSE_API exception : public std::exception {
class IFC_PARSE_API attribute_out_of_range_exception : public exception {
public:
attribute_out_of_range_exception(const std::string& exception)
: exception(exception) {}
attribute_out_of_range_exception(const std::string& message)
: exception(message) {}
~attribute_out_of_range_exception() override;
};