mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-13 19:07:57 +00:00
Fix/suppress signed-unsigned integer conversion warnings.
This commit is contained in:
committed by
Thomas Krijnen
parent
5e0da9725a
commit
84813084d0
@@ -85,7 +85,7 @@ public:
|
||||
if (!initialized_) {
|
||||
load_();
|
||||
}
|
||||
return attributes_.size();
|
||||
return (unsigned int)attributes_.size();
|
||||
}
|
||||
|
||||
IfcSchema::Type::Enum type() const {
|
||||
|
||||
Reference in New Issue
Block a user