IO: fixed different-names warnings

master
Martin Gerhardy 2022-01-28 19:51:19 +01:00
parent 452a8f462d
commit 7b035de1fe
1 changed files with 15 additions and 15 deletions

View File

@ -110,25 +110,25 @@ public:
return true;
}
bool writeBool(bool value);
bool writeBool(bool val);
bool writeInt8(int8_t val);
bool writeInt16(int16_t word);
bool writeInt32(int32_t dword);
bool writeInt64(int64_t dword);
bool writeInt16(int16_t val);
bool writeInt32(int32_t val);
bool writeInt64(int64_t val);
bool writeUInt8(uint8_t val);
bool writeUInt16(uint16_t word);
bool writeUInt32(uint32_t dword);
bool writeUInt64(uint64_t dword);
bool writeFloat(float value);
bool writeUInt16(uint16_t val);
bool writeUInt32(uint32_t val);
bool writeUInt64(uint64_t val);
bool writeFloat(float val);
bool writeInt16BE(int16_t word);
bool writeInt32BE(int32_t dword);
bool writeInt64BE(int64_t dword);
bool writeUInt16BE(uint16_t word);
bool writeUInt32BE(uint32_t dword);
bool writeUInt64BE(uint64_t dword);
bool writeFloatBE(float value);
bool writeInt16BE(int16_t val);
bool writeInt32BE(int32_t val);
bool writeInt64BE(int64_t val);
bool writeUInt16BE(uint16_t val);
bool writeUInt32BE(uint32_t val);
bool writeUInt64BE(uint64_t val);
bool writeFloatBE(float val);
bool writeStringFormat(bool terminate, CORE_FORMAT_STRING const char *fmt, ...) CORE_PRINTF_VARARG_FUNC(3);
bool writeString(const core::String &string, bool terminate = true);