diff options
author | Brad King <brad.king@kitware.com> | 2008-01-30 12:44:24 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-01-30 12:44:24 (GMT) |
commit | d2f901bebfe0f57d68a518c420512d27e23b6ce5 (patch) | |
tree | f5b4aff8339e7f9885ab781baf8f29d2326e3c73 /Source/kwsys/hash_map.hxx.in | |
parent | 91b1d90999abd5d346ef481f0a8849be9b23c0e5 (diff) | |
download | CMake-d2f901bebfe0f57d68a518c420512d27e23b6ce5.zip CMake-d2f901bebfe0f57d68a518c420512d27e23b6ce5.tar.gz CMake-d2f901bebfe0f57d68a518c420512d27e23b6ce5.tar.bz2 |
COMP: Fix warnings on VS9.
Diffstat (limited to 'Source/kwsys/hash_map.hxx.in')
-rw-r--r-- | Source/kwsys/hash_map.hxx.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/kwsys/hash_map.hxx.in b/Source/kwsys/hash_map.hxx.in index 78d47cb..ea1e309 100644 --- a/Source/kwsys/hash_map.hxx.in +++ b/Source/kwsys/hash_map.hxx.in @@ -236,7 +236,7 @@ public: }; template <class _Key, class _Tp, class _HashFcn, class _EqlKey, class _Alloc> -inline bool +bool operator==(const hash_map<_Key,_Tp,_HashFcn,_EqlKey,_Alloc>& __hm1, const hash_map<_Key,_Tp,_HashFcn,_EqlKey,_Alloc>& __hm2) { @@ -267,7 +267,7 @@ template <class _Key, class _Tp, class hash_multimap; template <class _Key, class _Tp, class _HF, class _EqKey, class _Alloc> -inline bool +bool operator==(const hash_multimap<_Key,_Tp,_HF,_EqKey,_Alloc>& __hm1, const hash_multimap<_Key,_Tp,_HF,_EqKey,_Alloc>& __hm2); @@ -427,7 +427,7 @@ public: }; template <class _Key, class _Tp, class _HF, class _EqKey, class _Alloc> -inline bool +bool operator==(const hash_multimap<_Key,_Tp,_HF,_EqKey,_Alloc>& __hm1, const hash_multimap<_Key,_Tp,_HF,_EqKey,_Alloc>& __hm2) { |