forked from boostorg/tuple
a fix of a fix
[SVN r15278]
This commit is contained in:
@ -42,10 +42,17 @@
|
|||||||
// use the one-arg one, which one should get with <cctype> but there seem
|
// use the one-arg one, which one should get with <cctype> but there seem
|
||||||
// to be exceptions to this.
|
// to be exceptions to this.
|
||||||
|
|
||||||
|
#if !defined (BOOST_NO_STD_LOCALE)
|
||||||
|
|
||||||
#include <locale> // for two-arg isspace
|
#include <locale> // for two-arg isspace
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
#include <cctype> // for one-arg (old) isspace
|
#include <cctype> // for one-arg (old) isspace
|
||||||
#include <ctype.h> // Metrowerks does not find one-arg isspace from cctype
|
#include <ctype.h> // Metrowerks does not find one-arg isspace from cctype
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace boost {
|
namespace boost {
|
||||||
namespace tuples {
|
namespace tuples {
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user