diff options
Diffstat (limited to 'src/Blocks')
-rw-r--r-- | src/Blocks/MetaRotater.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Blocks/MetaRotater.h b/src/Blocks/MetaRotater.h index 5493c87e2..d3664b6f1 100644 --- a/src/Blocks/MetaRotater.h +++ b/src/Blocks/MetaRotater.h @@ -1,4 +1,3 @@ - // MetaRotater.h // Provides a mixin for rotations and reflections @@ -44,11 +43,12 @@ NIBBLETYPE cMetaRotater<Base, BitMask, North, East, South, West, AssertIfNotMatc if (AssertIfNotMatched) { ASSERT(!"Invalid Meta value"); - return a_Meta; } + return a_Meta; } + template<class Base, NIBBLETYPE BitMask, NIBBLETYPE North, NIBBLETYPE East, NIBBLETYPE South, NIBBLETYPE West, bool AssertIfNotMatched> NIBBLETYPE cMetaRotater<Base, BitMask, North, East, South, West, AssertIfNotMatched>::MetaRotateCCW(NIBBLETYPE a_Meta) { @@ -63,8 +63,8 @@ NIBBLETYPE cMetaRotater<Base, BitMask, North, East, South, West, AssertIfNotMatc if (AssertIfNotMatched) { ASSERT(!"Invalid Meta value"); - return a_Meta; } + return a_Meta; } |