From 8646e95b6f91942e7741830dc057daa0e9a40aed Mon Sep 17 00:00:00 2001 From: tycho Date: Wed, 11 Mar 2015 10:39:49 +0000 Subject: Fixed style and removed false positives Relaxed the rules for < followed by an && and removed rule for < following an && --- src/Generating/IntGen.h | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'src/Generating/IntGen.h') diff --git a/src/Generating/IntGen.h b/src/Generating/IntGen.h index 1ffc15c6b..fac500fa8 100644 --- a/src/Generating/IntGen.h +++ b/src/Generating/IntGen.h @@ -73,14 +73,19 @@ public: // Code adapted from http://stackoverflow.com/questions/7858817/unpacking-a-tuple-to-call-a-matching-function-pointer template -struct seq { }; +struct seq +{ +}; template -struct gens : gens { }; +struct gens : gens +{ +}; template -struct gens<0, S...> { - typedef seq type; +struct gens<0, S...> +{ + typedef seq type; }; -- cgit v1.2.3