mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-30 01:48:15 +03:00
Make const the 'hex' argument of is_positive_num()
Always good to get in the habit of clearly marking arguments you won't mutate as const. Makes the code easier to read.
This commit is contained in:
@@ -284,7 +284,7 @@ static bool VVV_isxdigit(const unsigned char digit)
|
||||
|| SDL_isdigit(digit);
|
||||
}
|
||||
|
||||
bool is_positive_num(const std::string& str, bool hex)
|
||||
bool is_positive_num(const std::string& str, const bool hex)
|
||||
{
|
||||
for (size_t i = 0; i < str.length(); i++)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user