diff options
author | Brad King <brad.king@kitware.com> | 2015-03-18 12:58:11 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-03-18 12:58:11 (GMT) |
commit | 0e8325db66c3be268321aa7b274fbcd9109174b3 (patch) | |
tree | f8798c46127a5a112b4ca128537ed60461ed4a7b /Source/kwsys/testHashSTL.cxx | |
parent | a5cab2e7391df8d2072f1083c075a69bc746c7aa (diff) | |
parent | bc67dbede991be9238e8a102bfb026054b48d83d (diff) | |
download | CMake-0e8325db66c3be268321aa7b274fbcd9109174b3.zip CMake-0e8325db66c3be268321aa7b274fbcd9109174b3.tar.gz CMake-0e8325db66c3be268321aa7b274fbcd9109174b3.tar.bz2 |
Merge branch 'upstream-kwsys' into update-kwsys
Diffstat (limited to 'Source/kwsys/testHashSTL.cxx')
-rw-r--r-- | Source/kwsys/testHashSTL.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/kwsys/testHashSTL.cxx b/Source/kwsys/testHashSTL.cxx index b861a5b..ac5cf74 100644 --- a/Source/kwsys/testHashSTL.cxx +++ b/Source/kwsys/testHashSTL.cxx @@ -34,7 +34,7 @@ template class kwsys::hash_map<const char*, int>; template class kwsys::hash_set<int>; -bool test_hash_map() +static bool test_hash_map() { typedef kwsys::hash_map<const char*, int> mtype; mtype m; @@ -51,7 +51,7 @@ bool test_hash_map() return sum == 3; } -bool test_hash_set() +static bool test_hash_set() { typedef kwsys::hash_set<int> stype; stype s; |