Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
K
KWSys
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sylvain Joubert
KWSys
Commits
9367a33b
Commit
9367a33b
authored
10 years ago
by
Sean McBride
Committed by
Brad King
10 years ago
Browse files
Options
Downloads
Patches
Plain Diff
testHashSTL: Fix warnings by marking private functions static
Change-Id: I6b54e7adee6cf92f4b525c49a732efca2193185a
parent
093eae34
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
testHashSTL.cxx
+2
-2
2 additions, 2 deletions
testHashSTL.cxx
with
2 additions
and
2 deletions
testHashSTL.cxx
+
2
−
2
View file @
9367a33b
...
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment