This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
[libstdc++] cosmetic tweaks to c++config
- From: Phil Edwards <phil at jaj dot com>
- To: libstdc++ at gcc dot gnu dot org
- Date: Thu, 17 Apr 2003 22:42:33 -0400
- Subject: [libstdc++] cosmetic tweaks to c++config
While playing with gettext changes, I made this file follow the same
convention that we use everywhere else.
2003-04-17 Phil Edwards <pme at gcc dot gnu dot org>
* include/bits/c++config: Minor cosmetic tweaks.
Index: include/bits/c++config
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/bits/c++config,v
retrieving revision 1.700
diff -u -3 -p -r1.700 c++config
--- include/bits/c++config 17 Apr 2003 00:17:04 -0000 1.700
+++ include/bits/c++config 18 Apr 2003 02:39:28 -0000
@@ -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++ at gcc dot gnu dot 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.