mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-30 13:05:25 -05:00
sys: Added clang-format file, formatted entire project
This commit is contained in:
@@ -10,7 +10,7 @@ TEST_SEQUENCE("32BitIntegerEndianSwap") {
|
||||
|
||||
TEST_SEQUENCE("64BitFloatEndianSwap") {
|
||||
double floatValue = 1234.5;
|
||||
u64 integerValue = reinterpret_cast<u64&>(floatValue);
|
||||
u64 integerValue = reinterpret_cast<u64 &>(floatValue);
|
||||
|
||||
double swappedFloatValue = hex::changeEndianess(floatValue, std::endian::big);
|
||||
u64 swappedIntegerValue = hex::changeEndianess(integerValue, std::endian::big);
|
||||
|
||||
Reference in New Issue
Block a user