aleuly / ifcplusplus

Automatically exported from code.google.com/p/ifcplusplus
Other
0 stars 0 forks source link

IfcPPWriterSTEP::writeStream- std::ios::showpoint #30

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.Create a step writer. 
2. check the .ifc file after the header there is unexpected number "16"

stream << std::ios::showpoint; // This will print out the value of the enum 
which happens to be "16"

should be 

stream << std::setiosflags(std::ios::showpoint)

Original issue reported on code.google.com by sajlo...@gmail.com on 17 Dec 2014 at 12:46

GoogleCodeExporter commented 9 years ago
Thank you for the hint!
The fix is checked in.

Original comment by fabian.g...@gmail.com on 17 Dec 2014 at 12:26