From 477645f15d4e077185b1bf15aab82f3db6b0ef39 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 15 Aug 2019 06:49:17 -0400 Subject: [PATCH] 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. --- hecl/include/hecl/FourCC.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hecl/include/hecl/FourCC.hpp b/hecl/include/hecl/FourCC.hpp index 8950799d0..26ba12ad6 100644 --- a/hecl/include/hecl/FourCC.hpp +++ b/hecl/include/hecl/FourCC.hpp @@ -93,7 +93,7 @@ struct hash { }; } // namespace std -FMT_CUSTOM_FORMATTER(hecl::FourCC, "{:c}{:c}{:c}{:c}", - obj.getChars()[0], obj.getChars()[1], obj.getChars()[2], obj.getChars()[3]) -FMT_CUSTOM_FORMATTER(hecl::DNAFourCC, "{:c}{:c}{:c}{:c}", - obj.getChars()[0], obj.getChars()[1], obj.getChars()[2], obj.getChars()[3]) +FMT_CUSTOM_FORMATTER(hecl::FourCC, "{:c}{:c}{:c}{:c}", obj.getChars()[0], obj.getChars()[1], obj.getChars()[2], + obj.getChars()[3]) +FMT_CUSTOM_FORMATTER(hecl::DNAFourCC, "{:c}{:c}{:c}{:c}", obj.getChars()[0], obj.getChars()[1], obj.getChars()[2], + obj.getChars()[3])