diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2018-10-29 09:13:07 +0100 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2018-11-06 17:32:08 +0100 |
commit | e70cc8983c570bbacee37a67df86b1bf959894df (patch) | |
tree | 67ab940c8adcec6badffe10852e9d8dec2d4b411 /test/lint | |
parent | 6af27b81572b7b8e08ebcfe7eb533f40c66be4af (diff) |
Use IsDigit(...) instead of std::isdigit
Diffstat (limited to 'test/lint')
-rwxr-xr-x | test/lint/lint-locale-dependence.sh | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/test/lint/lint-locale-dependence.sh b/test/lint/lint-locale-dependence.sh index 44170a6b5a..59881ce882 100755 --- a/test/lint/lint-locale-dependence.sh +++ b/test/lint/lint-locale-dependence.sh @@ -5,13 +5,11 @@ KNOWN_VIOLATIONS=( "src/bitcoin-tx.cpp.*stoul" "src/bitcoin-tx.cpp.*trim_right" "src/bitcoin-tx.cpp:.*atoi" - "src/core_read.cpp.*is_digit" "src/dbwrapper.cpp.*stoul" "src/dbwrapper.cpp:.*vsnprintf" "src/httprpc.cpp.*trim" "src/init.cpp:.*atoi" "src/qt/rpcconsole.cpp:.*atoi" - "src/qt/rpcconsole.cpp:.*isdigit" "src/rest.cpp:.*strtol" "src/test/dbwrapper_tests.cpp:.*snprintf" "src/test/getarg_tests.cpp.*split" @@ -21,12 +19,9 @@ KNOWN_VIOLATIONS=( "src/util/system.cpp:.*atoi" "src/util/system.cpp:.*fprintf" "src/util/system.cpp:.*tolower" - "src/util/moneystr.cpp:.*isdigit" "src/util/strencodings.cpp:.*atoi" "src/util/strencodings.cpp:.*strtol" - "src/util/strencodings.cpp:.*strtoll" "src/util/strencodings.cpp:.*strtoul" - "src/util/strencodings.cpp:.*strtoull" "src/util/strencodings.h:.*atoi" ) |