[Mockpp-commits] mockpp/3party/cxxtest/cxxtest Flags.h,1.3,1.4 StdHeaders.h,1.2,1.3
Brought to you by:
ewald-arnold
From: Ewald A. <ewa...@us...> - 2005-12-29 12:07:48
|
Update of /cvsroot/mockpp/mockpp/3party/cxxtest/cxxtest In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16739/3party/cxxtest/cxxtest Modified Files: Flags.h StdHeaders.h Log Message: fix regular stl Index: Flags.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/3party/cxxtest/cxxtest/Flags.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- Flags.h 18 Dec 2005 16:56:22 -0000 1.3 +++ Flags.h 29 Dec 2005 12:07:36 -0000 1.4 @@ -45,6 +45,7 @@ #else +#define CXXTEST_DEQUE_H <deque> #define CXXTEST_STRING_H <string> #define CXXTEST_VECTOR_H <vector> #define CXXTEST_MAP_H <map> Index: StdHeaders.h =================================================================== RCS file: /cvsroot/mockpp/mockpp/3party/cxxtest/cxxtest/StdHeaders.h,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- StdHeaders.h 18 Dec 2005 16:56:22 -0000 1.2 +++ StdHeaders.h 29 Dec 2005 12:07:36 -0000 1.3 @@ -22,6 +22,10 @@ // #include CXXTEST_ALGORITHM_H // #include CXXTEST_FUNCTION_H +#ifndef CXXTEST_USE_MINI_STL +#include CXXTEST_DEQUE_H +#endif + #ifdef _MSC_VER # pragma warning( pop ) #endif // _MSC_VER |