id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc
1594,[statechart] 'fixed' : is not a member of 'std',faridz@…,Andreas Huber," The [http://stdcxx.apache.org/ stdcxx] is the another implementation of the STL (initially based on RogueWave STL).
The following errors are encountered when running boost regression tests on msvc with stdcxx-4.2.0.
{{{
Performance.cpp
..\libs\statechart\test\..\example\Performance\Performance.cpp(497) : error C2039: 'fixed' : is not a member of 'std'
..\libs\statechart\test\..\example\Performance\Performance.cpp(516) : see reference to function template instantiation 'void TestAndWriteResults(void)' being compiled
..\libs\statechart\test\..\example\Performance\Performance.cpp(497) : error C2065: 'fixed' : undeclared identifier
..\libs\statechart\test\..\example\Performance\Performance.cpp(497) : error C2039: 'fixed' : is not a member of 'std'
..\libs\statechart\test\..\example\Performance\Performance.cpp(517) : see reference to function template instantiation 'void TestAndWriteResults(void)' being compiled
..\libs\statechart\test\..\example\Performance\Performance.cpp(497) : error C2039: 'fixed' : is not a member of 'std'
..\libs\statechart\test\..\example\Performance\Performance.cpp(518) : see reference to function template instantiation 'void TestAndWriteResults(void)' being compiled
}}}
The proposd patch:
{{{
Index: libs/statechart/example/Performance/Performance.cpp
===================================================================
--- libs/statechart/example/Performance/Performance.cpp (revision 42908)
+++ libs/statechart/example/Performance/Performance.cpp (working copy)
@@ -62,6 +62,7 @@
#include
#include
#include
+#include // for std::fixed
#include
#include
}}}
",Bugs,closed,Boost 1.35.0,statechart,Boost Development Trunk,Regression,fixed,,Andreas Huber