mirror of https://github.com/AxioDL/metaforce.git
hecl/FourCC: Amend clang-format discrepancies
These were formatting discrepancies that existed before all of the previous changes. We may as well resolve them so that others don't run into them.
This commit is contained in:
parent
64ac2e423e
commit
477645f15d
|
@ -93,7 +93,7 @@ struct hash<hecl::FourCC> {
|
||||||
};
|
};
|
||||||
} // namespace std
|
} // namespace std
|
||||||
|
|
||||||
FMT_CUSTOM_FORMATTER(hecl::FourCC, "{:c}{:c}{:c}{:c}",
|
FMT_CUSTOM_FORMATTER(hecl::FourCC, "{:c}{:c}{:c}{:c}", obj.getChars()[0], obj.getChars()[1], obj.getChars()[2],
|
||||||
obj.getChars()[0], obj.getChars()[1], obj.getChars()[2], obj.getChars()[3])
|
obj.getChars()[3])
|
||||||
FMT_CUSTOM_FORMATTER(hecl::DNAFourCC, "{:c}{:c}{:c}{:c}",
|
FMT_CUSTOM_FORMATTER(hecl::DNAFourCC, "{:c}{:c}{:c}{:c}", obj.getChars()[0], obj.getChars()[1], obj.getChars()[2],
|
||||||
obj.getChars()[0], obj.getChars()[1], obj.getChars()[2], obj.getChars()[3])
|
obj.getChars()[3])
|
||||||
|
|
Loading…
Reference in New Issue