64-bit/32-bit portability

This commit is contained in:
Robin Davies
2021-08-23 23:12:06 -04:00
parent 0937c1a0f9
commit 8f6936a445
-5
View File
@@ -701,11 +701,6 @@ public:
is_ >> *value;
if (is_.fail()) throw PiPedalException("Invalid format.");
}
void read(int *value) {
skip_whitespace();
is_ >> *value;
if (is_.fail()) throw PiPedalException("Invalid format.");
}
void read(unsigned int*value)
{
is_ >> *value;