mirror of git://gcc.gnu.org/git/gcc.git
initializer_list: Do not declare anything if __GXX_EXPERIMENTAL_CXX0X__ is not defined.
2011-12-05 Paolo Carlini <paolo.carlini@oracle.com> * libsupc++/initializer_list: Do not declare anything if __GXX_EXPERIMENTAL_CXX0X__ is not defined. From-SVN: r182031
This commit is contained in:
parent
be4d41449d
commit
8972079e90
|
@ -1,3 +1,8 @@
|
||||||
|
2011-12-05 Paolo Carlini <paolo.carlini@oracle.com>
|
||||||
|
|
||||||
|
* libsupc++/initializer_list: Do not declare anything if
|
||||||
|
__GXX_EXPERIMENTAL_CXX0X__ is not defined.
|
||||||
|
|
||||||
2011-12-04 Jonathan Wakely <jwakely.gcc@gmail.com>
|
2011-12-04 Jonathan Wakely <jwakely.gcc@gmail.com>
|
||||||
|
|
||||||
* include/std/type_traits: Doxygen improvements.
|
* include/std/type_traits: Doxygen improvements.
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
|
|
||||||
#ifndef __GXX_EXPERIMENTAL_CXX0X__
|
#ifndef __GXX_EXPERIMENTAL_CXX0X__
|
||||||
# include <bits/c++0x_warning.h>
|
# include <bits/c++0x_warning.h>
|
||||||
#endif // C++0x
|
#else // C++0x
|
||||||
|
|
||||||
#pragma GCC visibility push(default)
|
#pragma GCC visibility push(default)
|
||||||
|
|
||||||
|
@ -101,4 +101,7 @@ namespace std
|
||||||
}
|
}
|
||||||
|
|
||||||
#pragma GCC visibility pop
|
#pragma GCC visibility pop
|
||||||
|
|
||||||
|
#endif // __GXX_EXPERIMENTAL_CXX0X__
|
||||||
|
|
||||||
#endif // _INITIALIZER_LIST
|
#endif // _INITIALIZER_LIST
|
||||||
|
|
Loading…
Reference in New Issue