diff options
Diffstat (limited to 'chilbert/GrayCodeRank.hpp')
-rw-r--r-- | chilbert/GrayCodeRank.hpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/chilbert/GrayCodeRank.hpp b/chilbert/GrayCodeRank.hpp index b067ce2..cff8dfc 100644 --- a/chilbert/GrayCodeRank.hpp +++ b/chilbert/GrayCodeRank.hpp @@ -69,8 +69,6 @@ namespace chilbert } while ( j != ds[i] ); } - - return; } template<class I> @@ -100,8 +98,6 @@ namespace chilbert im<<=1; if ( im == 0 ) { im = 1; ++ir; } } - - return; } @@ -158,8 +154,6 @@ namespace chilbert im>>=1; if ( im == 0 ) { im=((FBV_UINT)1)<<(FBV_BITS-1); --ir; } } - - return; } @@ -196,8 +190,6 @@ namespace chilbert if ( ++j == n ) j = 0; } while ( j != d ); - - return; } } |