aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Kosnik <bkoz@gcc.gnu.org>2005-09-01 20:59:31 +0000
committerBenjamin Kosnik <bkoz@gcc.gnu.org>2005-09-01 20:59:31 +0000
commit4eafe8821205e06658911b724a204043dcf25ee8 (patch)
treea191cb9ec098baa4c11c473787d3e1cc34ade1a1
parentd42a11e1222382954320f2234d1d3edb3742a954 (diff)
downloadgcc-4eafe8821205e06658911b724a204043dcf25ee8.zip
gcc-4eafe8821205e06658911b724a204043dcf25ee8.tar.gz
gcc-4eafe8821205e06658911b724a204043dcf25ee8.tar.bz2
std_cmath.h: Declare C99 functions and helper functions as inline.
2005-09-01 Benjamin Kosnik <bkoz@redhat.com> * include/c_std/std_cmath.h: Declare C99 functions and helper functions as inline. From-SVN: r103747
-rw-r--r--libstdc++-v3/include/c_std/std_cmath.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/include/c_std/std_cmath.h b/libstdc++-v3/include/c_std/std_cmath.h
index 3d125e4..987f139 100644
--- a/libstdc++-v3/include/c_std/std_cmath.h
+++ b/libstdc++-v3/include/c_std/std_cmath.h
@@ -478,7 +478,7 @@ namespace __gnu_cxx
{ return isgreaterequal(__f1, __f2); }
template<typename _Tp>
- int
+ inline int
__capture_isless(_Tp __f1, _Tp __f2) { return isless(__f1, __f2); }
template<typename _Tp>