diff options
author | Phil Edwards <pme@gcc.gnu.org> | 2003-04-18 02:41:06 +0000 |
---|---|---|
committer | Phil Edwards <pme@gcc.gnu.org> | 2003-04-18 02:41:06 +0000 |
commit | 3cfbe1789af22c094c85d57fcfbbdd279444d062 (patch) | |
tree | 43d90ba2524865783dcb9355fed626a815f5d27f | |
parent | 8520f70425b1b1a3052474a1f9da93160543a596 (diff) | |
download | gcc-3cfbe1789af22c094c85d57fcfbbdd279444d062.zip gcc-3cfbe1789af22c094c85d57fcfbbdd279444d062.tar.gz gcc-3cfbe1789af22c094c85d57fcfbbdd279444d062.tar.bz2 |
c++config: Minor cosmetic tweaks.
2003-04-17 Phil Edwards <pme@gcc.gnu.org>
* include/bits/c++config: Minor cosmetic tweaks.
From-SVN: r65768
-rw-r--r-- | libstdc++-v3/ChangeLog | 4 | ||||
-rw-r--r-- | libstdc++-v3/include/bits/c++config | 14 |
2 files changed, 11 insertions, 7 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 4f039bb..c439e2e 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,7 @@ +2003-04-17 Phil Edwards <pme@gcc.gnu.org> + + * include/bits/c++config: Minor cosmetic tweaks. + 2003-04-17 Loren J. Rittle <ljrittle@acm.org> * testsuite_flags.in (PCHFLAGS): Find PCH in new home. diff --git a/libstdc++-v3/include/bits/c++config b/libstdc++-v3/include/bits/c++config index 4d413f7..29cd207 100644 --- a/libstdc++-v3/include/bits/c++config +++ b/libstdc++-v3/include/bits/c++config @@ -56,7 +56,7 @@ // are already explicitly instantiated in the library binary. This // substantially reduces the binary size of resulting executables. #ifndef _GLIBCPP_EXTERN_TEMPLATE -#define _GLIBCPP_EXTERN_TEMPLATE 1 +# define _GLIBCPP_EXTERN_TEMPLATE 1 #endif // To enable older, ARM-style iostreams and other anachronisms use this. @@ -84,17 +84,17 @@ // so, please report any possible issues to libstdc++@gcc.gnu.org . // Do not define __USE_MALLOC on the command line. Enforce it here: #ifdef __USE_MALLOC -#error __USE_MALLOC should never be defined. Read the release notes. +# error __USE_MALLOC should never be defined. Read the release notes. #endif +// The remainder of the prewritten config is mostly automatic; all the +// user hooks are listed above. + // Create a boolean flag to be used to determine if --fast-math is set. #ifdef __FAST_MATH__ -#define _GLIBCPP_FAST_MATH 1 +# define _GLIBCPP_FAST_MATH 1 #else -#define _GLIBCPP_FAST_MATH 0 +# define _GLIBCPP_FAST_MATH 0 #endif -// The remainder of the prewritten config is mostly automatic; all the -// user hooks are listed above. - // End of prewritten config; the discovered settings follow. |