Skip to content

Commit f803a38

Browse files
committed
Revert "Some warnings"
This reverts commit 468d8ef.
1 parent 468d8ef commit f803a38

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/ifcgeom/taxonomy.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ struct eigen_base {
100100
o << std::string(indent, ' ') << class_name;
101101
if (this->components_) {
102102
int n = T::RowsAtCompileTime * T::ColsAtCompileTime;
103-
for (int i = 0; i < n; ++i) {
103+
for (size_t i = 0; i < n; ++i) {
104104
o << " " << (*components_)(i);
105105
}
106106
}

src/ifcparse/IfcBaseClass.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@
2525
#include "../ifcparse/IfcEntityInstanceData.h"
2626
#include "../ifcparse/IfcSchema.h"
2727
#include "../ifcparse/utils.h"
28-
#include "../ifcparse/Argument.h"
2928

3029
#include <boost/shared_ptr.hpp>
3130

3231
#include <atomic>
3332

33+
class Argument;
3434
class aggregate_of_instance;
3535

3636
namespace IfcUtil {

0 commit comments

Comments
 (0)