A limited attempt at some const correctness in the IfcGeomObjects interface

This commit is contained in:
Thomas Krijnen
2013-05-11 10:03:20 +00:00
parent 80bc1b5dab
commit dccbccfa06
8 changed files with 302 additions and 117 deletions
+1 -1
View File
@@ -237,7 +237,7 @@ int main(int argc, char** argv) {
geom_object = IfcGeomObjects::GetShapeModel();
}
std::string lowercase_type = geom_object->type;
std::string lowercase_type = geom_object->type();
for (std::string::iterator c = lowercase_type.begin(); c != lowercase_type.end(); ++c) {
*c = tolower(*c);
}