diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2020-04-15 10:04:41 +0000 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2020-04-15 10:05:03 +0000 |
commit | 54b5eb2b149a1f2a4a1dbdb9e0648c5a390d8e22 (patch) | |
tree | 724c28f988190420d38938ea6fa3340e26c56bee /test/lint | |
parent | e831f18b1ed3b9749566145ceba6038f89c0a749 (diff) |
tests: Add std::locale::global to list of locale dependent functions in lint-locale-dependence.sh
We currently flag `setlocale(...)` as locale dependent, but prior to this commit we didn't flag
`std::locale::global(...)` as such.
In addition to setting the global C++ locale `std::locale::global(...)` also does the equivalent
of `std::setlocale(LC_ALL, ...);`.
Thus the functionality of `std::locale::global(...)` is a superset of `setlocale(...)` :)
Diffstat (limited to 'test/lint')
-rwxr-xr-x | test/lint/lint-locale-dependence.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/lint/lint-locale-dependence.sh b/test/lint/lint-locale-dependence.sh index 70410d7405..3a28c286fc 100755 --- a/test/lint/lint-locale-dependence.sh +++ b/test/lint/lint-locale-dependence.sh @@ -97,6 +97,7 @@ LOCALE_DEPENDENT_FUNCTIONS=( snprintf sprintf sscanf + std::locale::global std::to_string stod stof |