Skip to content

Commit 837360b

Browse files
author
John Nonweiler
committed
Change int type specifiers to equivalent types
Replace 'signed int' with 'int', and 'unsigned int' with 'unsigned', so that .cpp and .h files are consistent, and doxygen doesn't get confused
1 parent 4c65ee1 commit 837360b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/util/options.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ void optionst::set_option(const std::string &option,
2828
}
2929

3030
void optionst::set_option(const std::string &option,
31-
const signed int value)
31+
const int value)
3232
{
3333
set_option(option, std::to_string(value));
3434
}
3535

3636
void optionst::set_option(const std::string &option,
37-
const unsigned int value)
37+
const unsigned value)
3838
{
3939
set_option(option, std::to_string(value));
4040
}

0 commit comments

Comments
 (0)