mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-18 06:21:40 +00:00
@@ -100,7 +100,7 @@ struct eigen_base {
|
|||||||
o << std::string(indent, ' ') << class_name;
|
o << std::string(indent, ' ') << class_name;
|
||||||
if (this->components_) {
|
if (this->components_) {
|
||||||
int n = T::RowsAtCompileTime * T::ColsAtCompileTime;
|
int n = T::RowsAtCompileTime * T::ColsAtCompileTime;
|
||||||
for (int i = 0; i < n; ++i) {
|
for (size_t i = 0; i < n; ++i) {
|
||||||
o << " " << (*components_)(i);
|
o << " " << (*components_)(i);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -25,12 +25,12 @@
|
|||||||
#include "../ifcparse/IfcEntityInstanceData.h"
|
#include "../ifcparse/IfcEntityInstanceData.h"
|
||||||
#include "../ifcparse/IfcSchema.h"
|
#include "../ifcparse/IfcSchema.h"
|
||||||
#include "../ifcparse/utils.h"
|
#include "../ifcparse/utils.h"
|
||||||
#include "../ifcparse/Argument.h"
|
|
||||||
|
|
||||||
#include <boost/shared_ptr.hpp>
|
#include <boost/shared_ptr.hpp>
|
||||||
|
|
||||||
#include <atomic>
|
#include <atomic>
|
||||||
|
|
||||||
|
class Argument;
|
||||||
class aggregate_of_instance;
|
class aggregate_of_instance;
|
||||||
|
|
||||||
namespace IfcUtil {
|
namespace IfcUtil {
|
||||||
|
|||||||
Reference in New Issue
Block a user