mirror of
https://github.com/TomHarte/CLK.git
synced 2025-01-03 15:29:45 +00:00
Correct syntax errors.
This commit is contained in:
parent
a66734883a
commit
8319aca351
@ -11,4 +11,6 @@
|
||||
using namespace Enterprise;
|
||||
|
||||
void Dave::write(uint16_t address, uint8_t value) {
|
||||
(void)address;
|
||||
(void)value;
|
||||
}
|
||||
|
@ -78,7 +78,7 @@ template <typename IntType = uint64_t, IntType polynomial = LSFRPolynomial<IntTy
|
||||
IntType value_ = 0;
|
||||
};
|
||||
|
||||
template <uint64_t polynomial> class LFSRv: public LFSR<MinIntTypeValue<polynomial>, polynomial> {};
|
||||
template <uint64_t polynomial> class LFSRv: public LFSR<typename MinIntTypeValue<polynomial>::type, polynomial> {};
|
||||
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user