diff options
author | Brad King <brad.king@kitware.com> | 2008-02-03 13:07:17 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-02-03 13:07:17 (GMT) |
commit | b38bc438941bd8a0096bbfdfceb8599a5b3a32d6 (patch) | |
tree | 2208b444ae9805f586738611b8925c50b53ad71c /Source/kwsys/hash_set.hxx.in | |
parent | 607e05ff1acee9384ef7aff2ca7441e5ce58ef42 (diff) | |
download | CMake-b38bc438941bd8a0096bbfdfceb8599a5b3a32d6.zip CMake-b38bc438941bd8a0096bbfdfceb8599a5b3a32d6.tar.gz CMake-b38bc438941bd8a0096bbfdfceb8599a5b3a32d6.tar.bz2 |
COMP: Remove inline keyword from forward declaration for VS9.
Diffstat (limited to 'Source/kwsys/hash_set.hxx.in')
-rw-r--r-- | Source/kwsys/hash_set.hxx.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/kwsys/hash_set.hxx.in b/Source/kwsys/hash_set.hxx.in index b346926..df1ad64 100644 --- a/Source/kwsys/hash_set.hxx.in +++ b/Source/kwsys/hash_set.hxx.in @@ -73,7 +73,7 @@ template <class _Value, class hash_set; template <class _Value, class _HashFcn, class _EqualKey, class _Alloc> -inline bool +bool operator==(const hash_set<_Value,_HashFcn,_EqualKey,_Alloc>& __hs1, const hash_set<_Value,_HashFcn,_EqualKey,_Alloc>& __hs2); @@ -232,7 +232,7 @@ public: }; template <class _Value, class _HashFcn, class _EqualKey, class _Alloc> -inline bool +bool operator==(const hash_set<_Value,_HashFcn,_EqualKey,_Alloc>& __hs1, const hash_set<_Value,_HashFcn,_EqualKey,_Alloc>& __hs2) { @@ -261,7 +261,7 @@ template <class _Value, class hash_multiset; template <class _Val, class _HashFcn, class _EqualKey, class _Alloc> -inline bool +bool operator==(const hash_multiset<_Val,_HashFcn,_EqualKey,_Alloc>& __hs1, const hash_multiset<_Val,_HashFcn,_EqualKey,_Alloc>& __hs2); @@ -412,7 +412,7 @@ public: }; template <class _Val, class _HashFcn, class _EqualKey, class _Alloc> -inline bool +bool operator==(const hash_multiset<_Val,_HashFcn,_EqualKey,_Alloc>& __hs1, const hash_multiset<_Val,_HashFcn,_EqualKey,_Alloc>& __hs2) { |