Boost logo

Boost-Commit :

From: john_at_[hidden]
Date: 2007-11-20 06:18:48


Author: johnmaddock
Date: 2007-11-20 06:18:48 EST (Tue, 20 Nov 2007)
New Revision: 41252
URL: http://svn.boost.org/trac/boost/changeset/41252

Log:
Changed order of #includes to keep Borland C++ 5.5.1 happy.
Text files modified:
   trunk/libs/regex/src/cregex.cpp | 2 +-
   trunk/libs/regex/src/posix_api.cpp | 2 +-
   trunk/libs/regex/src/wide_posix_api.cpp | 2 +-
   3 files changed, 3 insertions(+), 3 deletions(-)

Modified: trunk/libs/regex/src/cregex.cpp
==============================================================================
--- trunk/libs/regex/src/cregex.cpp (original)
+++ trunk/libs/regex/src/cregex.cpp 2007-11-20 06:18:48 EST (Tue, 20 Nov 2007)
@@ -19,8 +19,8 @@
 
 #define BOOST_REGEX_SOURCE
 
-#include <boost/cregex.hpp>
 #include <boost/regex.hpp>
+#include <boost/cregex.hpp>
 #if !defined(BOOST_NO_STD_STRING)
 #include <map>
 #include <list>

Modified: trunk/libs/regex/src/posix_api.cpp
==============================================================================
--- trunk/libs/regex/src/posix_api.cpp (original)
+++ trunk/libs/regex/src/posix_api.cpp 2007-11-20 06:18:48 EST (Tue, 20 Nov 2007)
@@ -19,8 +19,8 @@
 #define BOOST_REGEX_SOURCE
 
 #include <cstdio>
-#include <boost/cregex.hpp>
 #include <boost/regex.hpp>
+#include <boost/cregex.hpp>
 
 #if defined(BOOST_NO_STDC_NAMESPACE)
 namespace std{

Modified: trunk/libs/regex/src/wide_posix_api.cpp
==============================================================================
--- trunk/libs/regex/src/wide_posix_api.cpp (original)
+++ trunk/libs/regex/src/wide_posix_api.cpp 2007-11-20 06:18:48 EST (Tue, 20 Nov 2007)
@@ -22,8 +22,8 @@
 
 #ifndef BOOST_NO_WREGEX
 
-#include <boost/cregex.hpp>
 #include <boost/regex.hpp>
+#include <boost/cregex.hpp>
 
 #include <cwchar>
 #include <cstring>


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk