replace uint32 with uint32_t etc.

This commit is contained in:
MITSUNARI Shigeo 2020-09-08 15:14:18 +09:00
parent c306b8e578
commit bb967ae752
17 changed files with 807 additions and 814 deletions

View file

@ -97,7 +97,7 @@ CYBOZU_TEST_AUTO(align)
CYBOZU_TEST_EQUAL(size_t(getCurr()) % alignSize, 0u);
}
align(alignSize);
const uint8 *p = getCurr();
const uint8_t *p = getCurr();
// do nothing if aligned
align(alignSize);
CYBOZU_TEST_EQUAL(p, getCurr());