summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2008-01-22 13:52:48 (GMT)
committerBrad King <brad.king@kitware.com>2008-01-22 13:52:48 (GMT)
commit0df9e6904cd2416336a85d6d7972ce84dcbab417 (patch)
tree19d3d77c566846694c2408c7ff4048da16458747
parenta6af060b35b14b5108cefe7094bf9dd064f18dc2 (diff)
downloadCMake-0df9e6904cd2416336a85d6d7972ce84dcbab417.zip
CMake-0df9e6904cd2416336a85d6d7972ce84dcbab417.tar.gz
CMake-0df9e6904cd2416336a85d6d7972ce84dcbab417.tar.bz2
COMP: Remove inline keyword from forward declaration for VS9.
-rw-r--r--Source/kwsys/hash_map.hxx.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/kwsys/hash_map.hxx.in b/Source/kwsys/hash_map.hxx.in
index dfd843f..78d47cb 100644
--- a/Source/kwsys/hash_map.hxx.in
+++ b/Source/kwsys/hash_map.hxx.in
@@ -75,8 +75,8 @@ template <class _Key, class _Tp,
class hash_map;
template <class _Key, class _Tp, class _HashFn, class _EqKey, class _Alloc>
-inline bool operator==(const hash_map<_Key, _Tp, _HashFn, _EqKey, _Alloc>&,
- const hash_map<_Key, _Tp, _HashFn, _EqKey, _Alloc>&);
+bool operator==(const hash_map<_Key, _Tp, _HashFn, _EqKey, _Alloc>&,
+ const hash_map<_Key, _Tp, _HashFn, _EqKey, _Alloc>&);
template <class _Key, class _Tp, class _HashFcn, class _EqualKey,
class _Alloc>