We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 468d8ef commit f803a38Copy full SHA for f803a38
2 files changed
src/ifcgeom/taxonomy.h
@@ -100,7 +100,7 @@ struct eigen_base {
100
o << std::string(indent, ' ') << class_name;
101
if (this->components_) {
102
int n = T::RowsAtCompileTime * T::ColsAtCompileTime;
103
- for (int i = 0; i < n; ++i) {
+ for (size_t i = 0; i < n; ++i) {
104
o << " " << (*components_)(i);
105
}
106
src/ifcparse/IfcBaseClass.h
@@ -25,12 +25,12 @@
25
#include "../ifcparse/IfcEntityInstanceData.h"
26
#include "../ifcparse/IfcSchema.h"
27
#include "../ifcparse/utils.h"
28
-#include "../ifcparse/Argument.h"
29
30
#include <boost/shared_ptr.hpp>
31
32
#include <atomic>
33
+class Argument;
34
class aggregate_of_instance;
35
36
namespace IfcUtil {
0 commit comments