File tree Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 1- ---
2- Language : Cpp
31BasedOnStyle : Google
42AccessModifierOffset : -4
53AlignAfterOpenBracket : Align
@@ -164,4 +162,3 @@ StatementMacros:
164162TabWidth : 4
165163UseCRLF : false
166164UseTab : Never
167- ...
Original file line number Diff line number Diff line change @@ -31,9 +31,13 @@ class FibonacciLFSR_Right {
3131
3232 // Tap boundary check: 1..N-1
3333 template <uint32_t ...>
34- struct all_valid : std::true_type {};
34+ struct all_valid : std::true_type {
35+ //
36+ };
3537 template <uint32_t A, uint32_t ... Rest>
36- struct all_valid <A, Rest...> : std::integral_constant<bool , (A >= 1 && A <= N) && all_valid<Rest...>::value> {};
38+ struct all_valid <A, Rest...> : std::integral_constant<bool , (A >= 1 && A <= N) && all_valid<Rest...>::value> {
39+ //
40+ };
3741 static_assert (all_valid<Taps...>::value, " Taps out of range" );
3842
3943protected:
@@ -143,9 +147,13 @@ class FibonacciLFSR_Left {
143147
144148 // Tap boundary check: 1..N-1
145149 template <uint32_t ...>
146- struct all_valid : std::true_type {};
150+ struct all_valid : std::true_type {
151+ //
152+ };
147153 template <uint32_t A, uint32_t ... Rest>
148- struct all_valid <A, Rest...> : std::integral_constant<bool , (A >= 1 && A <= N) && all_valid<Rest...>::value> {};
154+ struct all_valid <A, Rest...> : std::integral_constant<bool , (A >= 1 && A <= N) && all_valid<Rest...>::value> {
155+ //
156+ };
149157 static_assert (all_valid<Taps...>::value, " Taps out of range" );
150158
151159protected:
You can’t perform that action at this time.
0 commit comments