Skip to content
Snippets Groups Projects
Commit 9367a33b authored by Sean McBride's avatar Sean McBride Committed by Brad King
Browse files

testHashSTL: Fix warnings by marking private functions static

Change-Id: I6b54e7adee6cf92f4b525c49a732efca2193185a
parent 093eae34
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment