We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9e94f5 commit 81537beCopy full SHA for 81537be
src/ifcconvert/IfcConvert.cpp
@@ -230,6 +230,8 @@ int main(int argc, char** argv) {
230
}
231
232
233
+ time_t start,end;
234
+ time(&start);
235
// Parse the file supplied in argv[1]. Returns true on succes.
236
if ( ! IfcGeomObjects::Init(input_filename, &std::cout, &log_stream) ) {
237
Logger::Message(Logger::LOG_ERROR, "Unable to parse .ifc file or no geometrical entities found");
@@ -247,8 +249,6 @@ int main(int argc, char** argv) {
247
249
248
250
std::set<std::string> materials;
251
- time_t start,end;
- time(&start);
252
int old_progress = -1;
253
Logger::Status("Creating geometry...");
254
0 commit comments