mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-27 18:57:17 +00:00
Fix warnings regarding unused variables.
This commit is contained in:
@@ -1294,9 +1294,7 @@ std::pair<std::string, double> IfcGeom::Kernel::initializeUnits(IfcSchema::IfcUn
|
|||||||
Logger::Message(Logger::LOG_ERROR, "No unit information found");
|
Logger::Message(Logger::LOG_ERROR, "No unit information found");
|
||||||
} else {
|
} else {
|
||||||
for (IfcEntityList::it it = units->begin(); it != units->end(); ++it) {
|
for (IfcEntityList::it it = units->begin(); it != units->end(); ++it) {
|
||||||
std::string current_unit_name = "";
|
|
||||||
IfcUtil::IfcBaseClass* base = *it;
|
IfcUtil::IfcBaseClass* base = *it;
|
||||||
IfcSchema::IfcSIUnit* unit = 0;
|
|
||||||
if (base->is(IfcSchema::Type::IfcNamedUnit)) {
|
if (base->is(IfcSchema::Type::IfcNamedUnit)) {
|
||||||
IfcSchema::IfcNamedUnit* named_unit = base->as<IfcSchema::IfcNamedUnit>();
|
IfcSchema::IfcNamedUnit* named_unit = base->as<IfcSchema::IfcNamedUnit>();
|
||||||
if (named_unit->UnitType() == IfcSchema::IfcUnitEnum::IfcUnit_LENGTHUNIT ||
|
if (named_unit->UnitType() == IfcSchema::IfcUnitEnum::IfcUnit_LENGTHUNIT ||
|
||||||
@@ -1387,7 +1385,7 @@ bool IfcGeom::Kernel::convert_layerset(const IfcSchema::IfcProduct* product, std
|
|||||||
double u1, u2;
|
double u1, u2;
|
||||||
Handle_Geom_Curve axis_curve = BRep_Tool::Curve(axis_edge, u1, u2);
|
Handle_Geom_Curve axis_curve = BRep_Tool::Curve(axis_edge, u1, u2);
|
||||||
|
|
||||||
if (true) {
|
if (true) { /**< @todo Why always true? */
|
||||||
if (axis_curve->DynamicType() == STANDARD_TYPE(Geom_Line)) {
|
if (axis_curve->DynamicType() == STANDARD_TYPE(Geom_Line)) {
|
||||||
Handle_Geom_Line axis_line = Handle_Geom_Line::DownCast(axis_curve);
|
Handle_Geom_Line axis_line = Handle_Geom_Line::DownCast(axis_curve);
|
||||||
reference_surface = new Geom_Plane(axis_line->Lin().Location(), axis_line->Lin().Direction() ^ gp::DZ());
|
reference_surface = new Geom_Plane(axis_line->Lin().Location(), axis_line->Lin().Direction() ^ gp::DZ());
|
||||||
|
|||||||
Reference in New Issue
Block a user