summaryrefslogtreecommitdiff
path: root/zen/format_unit.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2015-10-02 14:53:20 +0200
committerDaniel Wilhelm <daniel@wili.li>2015-10-02 14:53:20 +0200
commit94db751716dd2851f99b5c4c2981da1d1f4780f8 (patch)
treee4ffc9f5ae2b2873f267a6e5d3d2092c8aad49a7 /zen/format_unit.h
parent6.10 (diff)
downloadFreeFileSync-94db751716dd2851f99b5c4c2981da1d1f4780f8.tar.gz
FreeFileSync-94db751716dd2851f99b5c4c2981da1d1f4780f8.tar.bz2
FreeFileSync-94db751716dd2851f99b5c4c2981da1d1f4780f8.zip
6.11
Diffstat (limited to 'zen/format_unit.h')
-rw-r--r--zen/format_unit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/format_unit.h b/zen/format_unit.h
index 237b9f04..9416e3e5 100644
--- a/zen/format_unit.h
+++ b/zen/format_unit.h
@@ -44,7 +44,7 @@ std::wstring includeNumberSeparator(const std::wstring& number);
template <class NumberType> inline
std::wstring toGuiString(NumberType number)
{
- assert_static(IsInteger<NumberType>::value);
+ static_assert(IsInteger<NumberType>::value, "");
return ffs_Impl::includeNumberSeparator(zen::numberTo<std::wstring>(number));
}
}
bgstack15