Use user-defined literal for k, m, and g (powers of 1024)

This commit is contained in:
Tatsuhiro Tsujikawa 2015-06-21 18:04:30 +09:00
parent 8ba9b04747
commit 318c804504
99 changed files with 482 additions and 453 deletions

View file

@ -39,7 +39,7 @@ void FallocFileAllocationIteratorTest::testAllocate()
DefaultDiskWriter writer(fn);
int64_t offset = 10;
int64_t totalLength = 40960;
int64_t totalLength = 40_k;
// we have to open file first.
writer.openExistingFile();
@ -48,7 +48,7 @@ void FallocFileAllocationIteratorTest::testAllocate()
itr.allocateChunk();
CPPUNIT_ASSERT(itr.finished());
CPPUNIT_ASSERT_EQUAL((int64_t)40960, f.size());
CPPUNIT_ASSERT_EQUAL((int64_t)40_k, f.size());
#endif // !HAVE_FALLOCATE
}