[cmake-commits] king committed hash_set.hxx.in 1.4 1.5

cmake-commits at cmake.org cmake-commits at cmake.org
Sun Feb 3 08:07:19 EST 2008


Update of /cvsroot/CMake/CMake/Source/kwsys
In directory public:/mounts/ram/cvs-serv14997

Modified Files:
	hash_set.hxx.in 
Log Message:
COMP: Remove inline keyword from forward declaration for VS9.


Index: hash_set.hxx.in
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/kwsys/hash_set.hxx.in,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- hash_set.hxx.in	15 Apr 2005 19:30:28 -0000	1.4
+++ hash_set.hxx.in	3 Feb 2008 13:07:17 -0000	1.5
@@ -73,7 +73,7 @@
 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 @@
 };
 
 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 @@
 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 @@
 };
 
 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)
 {



More information about the Cmake-commits mailing list