summaryrefslogtreecommitdiff
path: root/zen/format_unit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'zen/format_unit.cpp')
-rw-r--r--zen/format_unit.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/zen/format_unit.cpp b/zen/format_unit.cpp
index 71bb8688..d87a1643 100644
--- a/zen/format_unit.cpp
+++ b/zen/format_unit.cpp
@@ -214,7 +214,7 @@ private:
reinterpret_cast<LPTSTR>(&setting), //__out LPTSTR lpLCData,
sizeof(setting) / sizeof(TCHAR)) > 0; //__in int cchData
}
-
+
static bool getUserSetting(LCTYPE lt, std::wstring& setting)
{
const int bufferSize = ::GetLocaleInfo(LOCALE_USER_DEFAULT, lt, nullptr, 0);
@@ -261,7 +261,7 @@ std::wstring zen::ffs_Impl::includeNumberSeparator(const std::wstring& number)
return &buffer[0]; //GetNumberFormat() returns char count *including* 0-termination!
}
}
- assert(false); //what's the problem?
+ assert(false); //what's the problem?
return number;
#elif defined ZEN_LINUX || defined ZEN_MAC
bgstack15