
Module: ppl/ppl Branch: master Commit: 70be8fa73540f064559b31be993b8f36a212556f URL: http://www.cs.unipr.it/git/gitweb.cgi?p=ppl/ppl.git;a=commit;h=70be8fa73540f...
Author: Roberto Bagnara bagnara@cs.unipr.it Date: Mon Aug 27 08:03:44 2012 +0200
Indentation fixed.
---
src/C_Integer.hh | 40 ++++++++++++++++++++++++++++++---------- 1 files changed, 30 insertions(+), 10 deletions(-)
diff --git a/src/C_Integer.hh b/src/C_Integer.hh index 8b9a33d..e7432ed 100644 --- a/src/C_Integer.hh +++ b/src/C_Integer.hh @@ -84,7 +84,9 @@ struct C_Integer<char> : public True {
template <> struct C_Integer<signed char> : public True { - enum const_bool_value { is_signed = true }; + enum const_bool_value { + is_signed = true + }; typedef void smaller_type; typedef void smaller_signed_type; typedef void smaller_unsigned_type; @@ -95,7 +97,9 @@ struct C_Integer<signed char> : public True {
template <> struct C_Integer<signed short> : public True { - enum const_bool_value { is_signed = true }; + enum const_bool_value { + is_signed = true + }; typedef signed char smaller_type; typedef signed char smaller_signed_type; typedef unsigned char smaller_unsigned_type; @@ -106,7 +110,9 @@ struct C_Integer<signed short> : public True {
template <> struct C_Integer<signed int> : public True { - enum const_bool_value { is_signed = true }; + enum const_bool_value { + is_signed = true + }; typedef signed short smaller_type; typedef signed short smaller_signed_type; typedef unsigned short smaller_unsigned_type; @@ -117,7 +123,9 @@ struct C_Integer<signed int> : public True {
template <> struct C_Integer<signed long> : public True { - enum const_bool_value { is_signed = true }; + enum const_bool_value { + is_signed = true + }; typedef signed int smaller_type; typedef signed int smaller_signed_type; typedef unsigned int smaller_unsigned_type; @@ -128,7 +136,9 @@ struct C_Integer<signed long> : public True {
template <> struct C_Integer<signed long long> : public True { - enum const_bool_value { is_signed = true }; + enum const_bool_value { + is_signed = true + }; typedef signed long smaller_type; typedef signed long smaller_signed_type; typedef unsigned long smaller_unsigned_type; @@ -139,7 +149,9 @@ struct C_Integer<signed long long> : public True {
template <> struct C_Integer<unsigned char> : public True { - enum const_bool_value { is_signed = false }; + enum const_bool_value { + is_signed = false + }; typedef void smaller_type; typedef void smaller_signed_type; typedef void smaller_unsigned_type; @@ -150,7 +162,9 @@ struct C_Integer<unsigned char> : public True {
template <> struct C_Integer<unsigned short> : public True { - enum const_bool_value { is_signed = false }; + enum const_bool_value { + is_signed = false + }; typedef unsigned char smaller_type; typedef signed char smaller_signed_type; typedef unsigned char smaller_unsigned_type; @@ -161,7 +175,9 @@ struct C_Integer<unsigned short> : public True {
template <> struct C_Integer<unsigned int> : public True { - enum const_bool_value { is_signed = false }; + enum const_bool_value { + is_signed = false + }; typedef unsigned short smaller_type; typedef signed short smaller_signed_type; typedef unsigned short smaller_unsigned_type; @@ -172,7 +188,9 @@ struct C_Integer<unsigned int> : public True {
template <> struct C_Integer<unsigned long> : public True { - enum const_bool_value { is_signed = false }; + enum const_bool_value { + is_signed = false + }; typedef unsigned int smaller_type; typedef signed int smaller_signed_type; typedef unsigned int smaller_unsigned_type; @@ -183,7 +201,9 @@ struct C_Integer<unsigned long> : public True {
template <> struct C_Integer<unsigned long long> : public True { - enum const_bool_value { is_signed = false }; + enum const_bool_value { + is_signed = false + }; typedef unsigned long smaller_type; typedef signed long smaller_signed_type; typedef unsigned long smaller_unsigned_type;