ifcparse: unify private member variables name to use trailing underscore

This commit is contained in:
Dirk Olbrich
2023-11-06 20:38:19 +01:00
committed by Thomas Krijnen
parent 8b145248c6
commit eea9a14722
20 changed files with 324 additions and 323 deletions
+3 -3
View File
@@ -36,14 +36,14 @@
namespace IfcParse {
class IFC_PARSE_API IfcException : public std::exception {
private:
std::string message;
std::string message_;
public:
IfcException(const std::string& m)
: message(m) {}
: message_(m) {}
virtual ~IfcException() throw() {}
virtual const char* what() const throw() {
return message.c_str();
return message_.c_str();
}
};