]> git.tdb.fi Git - libs/datafile.git/blobdiff - source/binaryparser.cpp
Change remaining fixed-size integers to standard types
[libs/datafile.git] / source / binaryparser.cpp
index a8b350df0e1b1ee22f5f0a86596a2b76f62936ce..e105393f3d02c16f1fbb21ff5a5922f365e8534b 100644 (file)
@@ -200,7 +200,7 @@ IntType::Store BinaryParser::parse_int()
 
 FloatType::Store BinaryParser::parse_float()
 {
-       UInt64 encoded = 0;
+       uint64_t encoded = 0;
        for(unsigned i=0; i<float_precision; i+=8)
        {
                int c = in.get();