Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarshan Sen <raisinten@gmail.com>2021-06-12 17:12:04 +0300
committerJames M Snell <jasnell@gmail.com>2021-06-14 18:19:51 +0300
commit940f2c2b4750d0647ffabd9cfe1c4bba09e639b6 (patch)
tree3e4953e120a2f8d694414c29bd1f7615d9fda544 /src/inspector
parent68229a9f08ea900979e38df0d6c2612e2197cfe1 (diff)
src: refactor to use locale functions
This makes the code more readable. Signed-off-by: Darshan Sen <raisinten@gmail.com> PR-URL: https://github.com/nodejs/node/pull/39014 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'src/inspector')
-rw-r--r--src/inspector/node_string.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inspector/node_string.cc b/src/inspector/node_string.cc
index 0d403c66f01..4cb8b573cc1 100644
--- a/src/inspector/node_string.cc
+++ b/src/inspector/node_string.cc
@@ -71,14 +71,14 @@ String StringViewToUtf8(v8_inspector::StringView view) {
String fromDouble(double d) {
std::ostringstream stream;
- stream.imbue(std::locale("C")); // Ignore locale
+ stream.imbue(std::locale::classic()); // Ignore current locale
stream << d;
return stream.str();
}
double toDouble(const char* buffer, size_t length, bool* ok) {
std::istringstream stream(std::string(buffer, length));
- stream.imbue(std::locale("C")); // Ignore locale
+ stream.imbue(std::locale::classic()); // Ignore current locale
double d;
stream >> d;
*ok = !stream.fail();