Change #includes to use angle brackets.

See: https://svn.boost.org/trac/boost/ticket/11516.
This commit is contained in:
jzmaddock
2016-03-12 17:14:11 +00:00
parent efefba30ee
commit 77d86bcf16
9 changed files with 29 additions and 29 deletions

View File

@@ -12,7 +12,7 @@
// Comeau C++ compiler setup: // Comeau C++ compiler setup:
#include "boost/config/compiler/common_edg.hpp" #include <boost/config/compiler/common_edg.hpp>
#if (__COMO_VERSION__ <= 4245) #if (__COMO_VERSION__ <= 4245)

View File

@@ -9,7 +9,7 @@
#define BOOST_COMPILER "HP Tru64 C++ " BOOST_STRINGIZE(__DECCXX_VER) #define BOOST_COMPILER "HP Tru64 C++ " BOOST_STRINGIZE(__DECCXX_VER)
#include "boost/config/compiler/common_edg.hpp" #include <boost/config/compiler/common_edg.hpp>
// //
// versions check: // versions check:

View File

@@ -21,7 +21,7 @@
# error "Unsupported Cray compiler, please try running the configure script." # error "Unsupported Cray compiler, please try running the configure script."
#endif #endif
#include "boost/config/compiler/common_edg.hpp" #include <boost/config/compiler/common_edg.hpp>
// //

View File

@@ -9,7 +9,7 @@
#define BOOST_COMPILER "Greenhills C++ version " BOOST_STRINGIZE(__ghs) #define BOOST_COMPILER "Greenhills C++ version " BOOST_STRINGIZE(__ghs)
#include "boost/config/compiler/common_edg.hpp" #include <boost/config/compiler/common_edg.hpp>
// //
// versions check: // versions check:

View File

@@ -13,7 +13,7 @@
// HP aCC C++ compiler setup: // HP aCC C++ compiler setup:
#if defined(__EDG__) #if defined(__EDG__)
#include "boost/config/compiler/common_edg.hpp" #include <boost/config/compiler/common_edg.hpp>
#endif #endif
#if (__HP_aCC <= 33100) #if (__HP_aCC <= 33100)

View File

@@ -90,7 +90,7 @@
#else #else
#include "boost/config/compiler/common_edg.hpp" #include <boost/config/compiler/common_edg.hpp>
#if defined(__INTEL_COMPILER) #if defined(__INTEL_COMPILER)
#if __INTEL_COMPILER == 9999 #if __INTEL_COMPILER == 9999

View File

@@ -9,7 +9,7 @@
// Kai C++ compiler setup: // Kai C++ compiler setup:
#include "boost/config/compiler/common_edg.hpp" #include <boost/config/compiler/common_edg.hpp>
# if (__KCC_VERSION <= 4001) || !defined(BOOST_STRICT_CONFIG) # if (__KCC_VERSION <= 4001) || !defined(BOOST_STRICT_CONFIG)
// at least on Sun, the contents of <cwchar> is not in namespace std // at least on Sun, the contents of <cwchar> is not in namespace std

View File

@@ -9,7 +9,7 @@
#define BOOST_COMPILER "SGI Irix compiler version " BOOST_STRINGIZE(_COMPILER_VERSION) #define BOOST_COMPILER "SGI Irix compiler version " BOOST_STRINGIZE(_COMPILER_VERSION)
#include "boost/config/compiler/common_edg.hpp" #include <boost/config/compiler/common_edg.hpp>
// //
// Threading support: // Threading support:

View File

@@ -122,27 +122,27 @@
// //
// This section allows dependency scanners to find all the headers we *might* include: // This section allows dependency scanners to find all the headers we *might* include:
// //
#include "boost/config/compiler/gcc_xml.hpp" #include <boost/config/compiler/gcc_xml.hpp>
#include "boost/config/compiler/cray.hpp" #include <boost/config/compiler/cray.hpp>
#include "boost/config/compiler/comeau.hpp" #include <boost/config/compiler/comeau.hpp>
#include "boost/config/compiler/pathscale.hpp" #include <boost/config/compiler/pathscale.hpp>
#include "boost/config/compiler/intel.hpp" #include <boost/config/compiler/intel.hpp>
#include "boost/config/compiler/clang.hpp" #include <boost/config/compiler/clang.hpp>
#include "boost/config/compiler/digitalmars.hpp" #include <boost/config/compiler/digitalmars.hpp>
#include "boost/config/compiler/gcc.hpp" #include <boost/config/compiler/gcc.hpp>
#include "boost/config/compiler/kai.hpp" #include <boost/config/compiler/kai.hpp>
#include "boost/config/compiler/sgi_mipspro.hpp" #include <boost/config/compiler/sgi_mipspro.hpp>
#include "boost/config/compiler/compaq_cxx.hpp" #include <boost/config/compiler/compaq_cxx.hpp>
#include "boost/config/compiler/greenhills.hpp" #include <boost/config/compiler/greenhills.hpp>
#include "boost/config/compiler/codegear.hpp" #include <boost/config/compiler/codegear.hpp>
#include "boost/config/compiler/borland.hpp" #include <boost/config/compiler/borland.hpp>
#include "boost/config/compiler/metrowerks.hpp" #include <boost/config/compiler/metrowerks.hpp>
#include "boost/config/compiler/sunpro_cc.hpp" #include <boost/config/compiler/sunpro_cc.hpp>
#include "boost/config/compiler/hp_acc.hpp" #include <boost/config/compiler/hp_acc.hpp>
#include "boost/config/compiler/mpw.hpp" #include <boost/config/compiler/mpw.hpp>
#include "boost/config/compiler/vacpp.hpp" #include <boost/config/compiler/vacpp.hpp>
#include "boost/config/compiler/pgi.hpp" #include <boost/config/compiler/pgi.hpp>
#include "boost/config/compiler/visualc.hpp" #include <boost/config/compiler/visualc.hpp>
#endif #endif