We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ed54d1 commit 0bf4be5Copy full SHA for 0bf4be5
Source/System/Reader.h
@@ -185,6 +185,16 @@ namespace RTE {
185
*m_Stream >> var;
186
return *this;
187
}
188
+ Reader& operator>>(long long& var) {
189
+ DiscardEmptySpace();
190
+ *m_Stream >> var;
191
+ return *this;
192
+ }
193
+ Reader& operator>>(unsigned long long& var) {
194
195
196
197
198
// Yeah, this is dumb - read as double and cast.
199
// This is because, for whatever fucking reason, iostream can save out floats at a precision that it's then unable to read...
200
Reader& operator>>(float& var) {
0 commit comments