From e1a02c5141d951c57f15c321520fe81ab20a760f Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Mon, 9 Sep 2013 15:23:05 -0700 Subject: [PATCH] Fix formatting of long long. --- format.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/format.h b/format.h index ada6577f..1ca67ce8 100644 --- a/format.h +++ b/format.h @@ -164,6 +164,9 @@ struct IntTraits : SignedIntTraits {}; template <> struct IntTraits : SignedIntTraits {}; +template <> +struct IntTraits : SignedIntTraits {}; + template struct IsLongDouble { enum {VALUE = 0}; };