aboutsummaryrefslogtreecommitdiff
path: root/xml/details/config.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-05-02 21:26:58 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-05-02 23:55:21 +0300
commit424e315dfa9a78aebf0653c95f83fe6ed452dd8e (patch)
tree59759d1d4eac4096df104d4dbab24a531ada3399 /xml/details/config.hxx
parent3d2b5b2a7064abe35614ebb32db03bd2881adcf0 (diff)
Add hxx extension for headers and libstud prefix for library dir
Diffstat (limited to 'xml/details/config.hxx')
-rw-r--r--xml/details/config.hxx50
1 files changed, 0 insertions, 50 deletions
diff --git a/xml/details/config.hxx b/xml/details/config.hxx
deleted file mode 100644
index 5c46121..0000000
--- a/xml/details/config.hxx
+++ /dev/null
@@ -1,50 +0,0 @@
-// file : xml/details/config.hxx
-// copyright : Copyright (c) 2013-2017 Code Synthesis Tools CC
-// license : MIT; see accompanying LICENSE file
-
-#ifndef XML_DETAILS_CONFIG_HXX
-#define XML_DETAILS_CONFIG_HXX
-
-// C++11 support.
-//
-#ifdef _MSC_VER
-# if _MSC_VER >= 1900
-# define STUDXML_CXX11_NOEXCEPT
-# endif
-#else
-# if defined(__GXX_EXPERIMENTAL_CXX0X__) || __cplusplus >= 201103L
-# ifdef __clang__ // Pretends to be a really old __GNUC__ on some platforms.
-# define STUDXML_CXX11_NOEXCEPT
-# elif defined(__GNUC__)
-# if (__GNUC__ == 4 && __GNUC_MINOR__ >= 6) || __GNUC__ > 4
-# define STUDXML_CXX11_NOEXCEPT
-# endif
-# else
-# define STUDXML_CXX11_NOEXCEPT
-# endif
-# endif
-#endif
-
-#ifdef STUDXML_CXX11_NOEXCEPT
-# define STUDXML_NOTHROW_NOEXCEPT noexcept
-#else
-# define STUDXML_NOTHROW_NOEXCEPT throw()
-#endif
-
-// Note: the same in expat/config.h
-//
-#ifdef LIBSTUDXML_BUILD2
-# ifdef _MSC_VER
-# include <xml/details/build2/config-vc.h>
-# else
-# include <xml/details/build2/config.h>
-# endif
-#else
-# ifdef _MSC_VER
-# include <xml/details/config-vc.h>
-# else
-# include <xml/details/config.h>
-# endif
-#endif
-
-#endif // XML_DETAILS_CONFIG_HXX