mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-09 05:46:51 +00:00
ifcparse: unify private member variables name to use trailing underscore
This commit is contained in:
committed by
Thomas Krijnen
parent
8b145248c6
commit
eea9a14722
@@ -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();
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user