Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Sebastian Schrader
Kea
Commits
f7cfb333
Commit
f7cfb333
authored
May 06, 2013
by
JINMEI Tatuya
Browse files
[2850] style cleanup: added () for returned values
parent
1fd14dfe
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lib/util/tests/random_number_generator_unittest.cc
View file @
f7cfb333
...
...
@@ -44,9 +44,9 @@ public:
}
virtual
~
UniformRandomIntegerGeneratorTest
(){}
int
gen
()
{
return
gen_
();
}
int
max
()
const
{
return
max_
;
}
int
min
()
const
{
return
min_
;
}
int
gen
()
{
return
(
gen_
()
)
;
}
int
max
()
const
{
return
(
max_
)
;
}
int
min
()
const
{
return
(
min_
)
;
}
private:
UniformRandomIntegerGenerator
gen_
;
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment