summaryrefslogtreecommitdiff
path: root/zen/format_unit.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/format_unit.h')
-rwxr-xr-xzen/format_unit.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/zen/format_unit.h b/zen/format_unit.h
index 154ec542..9c6a4690 100755
--- a/zen/format_unit.h
+++ b/zen/format_unit.h
@@ -37,7 +37,7 @@ std::wstring formatNumber(NumberType number); //format integer number including
//--------------- inline impelementation -------------------------------------------
-namespace ffs_Impl
+namespace impl
{
std::wstring includeNumberSeparator(const std::wstring& number);
}
@@ -46,7 +46,7 @@ template <class NumberType> inline
std::wstring formatNumber(NumberType number)
{
static_assert(IsInteger<NumberType>::value, "");
- return ffs_Impl::includeNumberSeparator(zen::numberTo<std::wstring>(number));
+ return impl::includeNumberSeparator(zen::numberTo<std::wstring>(number));
}
}
bgstack15