1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-09 17:29:36 +00:00

Correct syntax errors.

This commit is contained in:
Thomas Harte 2021-06-22 20:50:03 -04:00
parent a66734883a
commit 8319aca351
2 changed files with 3 additions and 1 deletions

View File

@ -11,4 +11,6 @@
using namespace Enterprise;
void Dave::write(uint16_t address, uint8_t value) {
(void)address;
(void)value;
}

View File

@ -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> {};
}