diff options
author | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2005-09-01 20:59:31 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2005-09-01 20:59:31 +0000 |
commit | 4eafe8821205e06658911b724a204043dcf25ee8 (patch) | |
tree | a191cb9ec098baa4c11c473787d3e1cc34ade1a1 | |
parent | d42a11e1222382954320f2234d1d3edb3742a954 (diff) | |
download | gcc-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.h | 2 |
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> |