From 5a64d8cf37253f8227d179a52a0c022a927db8b6 Mon Sep 17 00:00:00 2001 From: bkoz Date: Sat, 5 Jul 2003 04:05:45 +0000 Subject: 2003-07-04 Benjamin Kosnik Move from CPP to CXX. * include/bits/c++config: Move to GLIBCXX from GLIBCPP. * testsuite/Makefile.am: Same. * testsuite/Makefile.in: Regenerate. * po/Makefile.am: Same. * po/Makefile.in: Regenerate. * libsupc++/Makefile.am: Same. * libsupc++/Makefile.in: Regenerate. * libmath/Makefile.am: Same. * libmath/Makefile.in: Regenerate. * include/Makefile.am: Same. * include/Makefile.in: Regenerate. * src/Makefile.am: Same. * src/Makefile.in: Regenerate. * acconfig.h: Same. * configure.host: Same. * configure.in: Same. * configure: Regenerate. * acinclude.m4: Same. * aclocal.m4: Same. * src: Change all files in this directory. * testsuite: Same. * include: Same, standardize include guards. * config: Same. * libsupc++: Same. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68958 138bc75d-0d04-0410-961f-82ee72b054a4 --- libstdc++-v3/include/bits/stl_function.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libstdc++-v3/include/bits/stl_function.h') diff --git a/libstdc++-v3/include/bits/stl_function.h b/libstdc++-v3/include/bits/stl_function.h index 9ea975d4a8d..90513144726 100644 --- a/libstdc++-v3/include/bits/stl_function.h +++ b/libstdc++-v3/include/bits/stl_function.h @@ -58,8 +58,8 @@ * You should not attempt to use it directly. */ -#ifndef __GLIBCPP_INTERNAL_FUNCTION_H -#define __GLIBCPP_INTERNAL_FUNCTION_H +#ifndef _FUNCTION_H +#define _FUNCTION_H 1 namespace std { @@ -361,7 +361,7 @@ public: operator()(const typename _Operation::second_argument_type& __x) const { return op(value, __x); } -#ifdef _GLIBCPP_RESOLVE_LIB_DEFECTS +#ifdef _GLIBCXX_RESOLVE_LIB_DEFECTS //109. Missing binders for non-const sequence elements typename _Operation::result_type operator()(typename _Operation::second_argument_type& __x) const { @@ -395,7 +395,7 @@ public: operator()(const typename _Operation::first_argument_type& __x) const { return op(__x, value); } -#ifdef _GLIBCPP_RESOLVE_LIB_DEFECTS +#ifdef _GLIBCXX_RESOLVE_LIB_DEFECTS //109. Missing binders for non-const sequence elements typename _Operation::result_type operator()(typename _Operation::first_argument_type& __x) const { @@ -729,7 +729,7 @@ mem_fun_ref(_Ret (_Tp::*__f)(_Arg) const) } // namespace std -#endif /* __GLIBCPP_INTERNAL_FUNCTION_H */ +#endif /* _FUNCTION_H */ // Local Variables: // mode:C++ -- cgit v1.2.1