Commit e1a02c51 authored by Victor Zverovich's avatar Victor Zverovich

Fix formatting of long long.

parent 8308da46
......@@ -164,6 +164,9 @@ struct IntTraits<int> : SignedIntTraits<int, unsigned> {};
template <>
struct IntTraits<long> : SignedIntTraits<long, unsigned long> {};
template <>
struct IntTraits<long long> : SignedIntTraits<long long, unsigned long long> {};
template <typename T>
struct IsLongDouble { enum {VALUE = 0}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment