mirror of
https://github.com/boostorg/logic.git
synced 2025-12-23 07:12:41 +01:00
Compare commits
19 Commits
sandbox-br
...
boost-1.57
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1dab9cd10a | ||
|
|
2afd1a9ec6 | ||
|
|
95baf1910a | ||
|
|
9f9a1e7656 | ||
|
|
aede53315c | ||
|
|
5ad06c7370 | ||
|
|
c053ade60f | ||
|
|
b86917fe43 | ||
|
|
987080a8c7 | ||
|
|
bd737d03b0 | ||
|
|
58cd700623 | ||
|
|
951486c794 | ||
|
|
f1d8f513bf | ||
|
|
9db33f9dcf | ||
|
|
02caed268b | ||
|
|
5749fb9ef1 | ||
|
|
03a2600bf5 | ||
|
|
9e9489c7bd | ||
|
|
73cce598c7 |
@@ -14,7 +14,7 @@
|
||||
#include <boost/config.hpp>
|
||||
#include <boost/detail/workaround.hpp>
|
||||
|
||||
#if BOOST_WORKAROUND(_MSC_VER, >= 1200)
|
||||
#if defined(_MSC_VER)
|
||||
# pragma once
|
||||
#endif
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
#include <boost/detail/workaround.hpp>
|
||||
#include <boost/noncopyable.hpp>
|
||||
|
||||
#if BOOST_WORKAROUND(_MSC_VER, >= 1200)
|
||||
#if defined(_MSC_VER)
|
||||
# pragma once
|
||||
#endif
|
||||
|
||||
@@ -104,17 +104,11 @@ template<>
|
||||
inline std::basic_string<char> get_default_indeterminate_name<char>()
|
||||
{ return "indeterminate"; }
|
||||
|
||||
#if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
|
||||
// VC++ 6.0 chokes on the specialization below, so we're stuck without
|
||||
// wchar_t support. What a pain. TODO: it might just need a the template
|
||||
// parameter as function parameter...
|
||||
#else
|
||||
# ifndef BOOST_NO_WCHAR_T
|
||||
#ifndef BOOST_NO_WCHAR_T
|
||||
/// Returns the wide character string L"indeterminate".
|
||||
template<>
|
||||
inline std::basic_string<wchar_t> get_default_indeterminate_name<wchar_t>()
|
||||
{ return L"indeterminate"; }
|
||||
# endif
|
||||
#endif
|
||||
|
||||
// http://www.cantrip.org/locale.html
|
||||
|
||||
Reference in New Issue
Block a user