Commit 42016207 by Ben Elliston

compatibility.cc (_ZTIe, [...]): Change type to const void * const.

	* src/compatibility.cc (_ZTIe, _ZTIPe, _ZTIPKe): Change type to
	const void * const.

From-SVN: r147455
parent 2b703e1a
2009-05-13 Ben Elliston <bje@au.ibm.com>
* src/compatibility.cc (_ZTIe, _ZTIPe, _ZTIPKe): Change type to
const void * const.
2009-05-12 Edward Smith-Rowland <3dw4rd@verizon.net> 2009-05-12 Edward Smith-Rowland <3dw4rd@verizon.net>
* doc/xml/manual/status_cxx200x.xml: Note missing constexpr for * doc/xml/manual/status_cxx200x.xml: Note missing constexpr for
...@@ -19,7 +24,7 @@ ...@@ -19,7 +24,7 @@
2009-05-07 Paolo Carlini <paolo.carlini@oracle.com> 2009-05-07 Paolo Carlini <paolo.carlini@oracle.com>
* include/ext/throw_allocator.h: Remove redundante include. * include/ext/throw_allocator.h: Remove redundant include.
2009-05-07 Paolo Carlini <paolo.carlini@oracle.com> 2009-05-07 Paolo Carlini <paolo.carlini@oracle.com>
...@@ -45,10 +50,10 @@ ...@@ -45,10 +50,10 @@
2009-05-06 Johannes Singler <singler@ira.uka.de> 2009-05-06 Johannes Singler <singler@ira.uka.de>
PR libstdc++/39546 PR libstdc++/39546
* include/parallel/algo.h (find_switch): * include/parallel/algo.h (find_switch):
Parametrize binder2nd with const T& instead of T. Parametrize binder2nd with const T& instead of T.
* testsuite/25_algorithms/find/39546.cc: new test case * testsuite/25_algorithms/find/39546.cc: new test case
2009-05-06 Paolo Carlini <paolo.carlini@oracle.com> 2009-05-06 Paolo Carlini <paolo.carlini@oracle.com>
......
...@@ -502,13 +502,13 @@ extern void *_ZTVN10__cxxabiv119__pointer_type_infoE[]; ...@@ -502,13 +502,13 @@ extern void *_ZTVN10__cxxabiv119__pointer_type_infoE[];
extern __attribute__((used, weak)) const char _ZTSe[2] = "e"; extern __attribute__((used, weak)) const char _ZTSe[2] = "e";
extern __attribute__((used, weak)) const char _ZTSPe[3] = "Pe"; extern __attribute__((used, weak)) const char _ZTSPe[3] = "Pe";
extern __attribute__((used, weak)) const char _ZTSPKe[4] = "PKe"; extern __attribute__((used, weak)) const char _ZTSPKe[4] = "PKe";
extern __attribute__((used, weak)) const void *_ZTIe[2] extern __attribute__((used, weak)) const void * const _ZTIe[2]
= { (void *) &_ZTVN10__cxxabiv123__fundamental_type_infoE[2], = { (void *) &_ZTVN10__cxxabiv123__fundamental_type_infoE[2],
(void *) _ZTSe }; (void *) _ZTSe };
extern __attribute__((used, weak)) const void *_ZTIPe[4] extern __attribute__((used, weak)) const void * const _ZTIPe[4]
= { (void *) &_ZTVN10__cxxabiv119__pointer_type_infoE[2], = { (void *) &_ZTVN10__cxxabiv119__pointer_type_infoE[2],
(void *) _ZTSPe, (void *) 0L, (void *) _ZTIe }; (void *) _ZTSPe, (void *) 0L, (void *) _ZTIe };
extern __attribute__((used, weak)) const void *_ZTIPKe[4] extern __attribute__((used, weak)) const void * const _ZTIPKe[4]
= { (void *) &_ZTVN10__cxxabiv119__pointer_type_infoE[2], = { (void *) &_ZTVN10__cxxabiv119__pointer_type_infoE[2],
(void *) _ZTSPKe, (void *) 1L, (void *) _ZTIe }; (void *) _ZTSPKe, (void *) 1L, (void *) _ZTIe };
#endif // _GLIBCXX_LONG_DOUBLE_COMPAT #endif // _GLIBCXX_LONG_DOUBLE_COMPAT
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment