diff options
author | Ben Elliston <bje@gcc.gnu.org> | 2009-05-13 10:16:08 +1000 |
---|---|---|
committer | Ben Elliston <bje@gcc.gnu.org> | 2009-05-13 10:16:08 +1000 |
commit | 420162073c0517ec01652a3cbb256c373fb1245b (patch) | |
tree | a7c3e3900ccdb3d71037d83691d316568ed18930 /libstdc++-v3/src | |
parent | 2b703e1aa2bba418175450095bfed7e38da8eeab (diff) | |
download | gcc-420162073c0517ec01652a3cbb256c373fb1245b.zip gcc-420162073c0517ec01652a3cbb256c373fb1245b.tar.gz gcc-420162073c0517ec01652a3cbb256c373fb1245b.tar.bz2 |
compatibility.cc (_ZTIe, [...]): Change type to const void * const.
* src/compatibility.cc (_ZTIe, _ZTIPe, _ZTIPKe): Change type to
const void * const.
From-SVN: r147455
Diffstat (limited to 'libstdc++-v3/src')
-rw-r--r-- | libstdc++-v3/src/compatibility.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libstdc++-v3/src/compatibility.cc b/libstdc++-v3/src/compatibility.cc index 1e1897c..8889749 100644 --- a/libstdc++-v3/src/compatibility.cc +++ b/libstdc++-v3/src/compatibility.cc @@ -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 _ZTSPe[3] = "Pe"; 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 *) _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 *) _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 *) _ZTSPKe, (void *) 1L, (void *) _ZTIe }; #endif // _GLIBCXX_LONG_DOUBLE_COMPAT |