From d25c7cd38c6e959778fe357a209ddc812c5de8e0 Mon Sep 17 00:00:00 2001 From: Romain BOULLARD Date: Wed, 28 Jan 2026 17:39:29 +0100 Subject: [PATCH] fix formatting --- Bigfoot/Sources/System/Include/System/UUID/UUID.hpp | 3 --- Bigfoot/Sources/Utils/Include/Utils/Version.hpp | 3 +-- Bigfoot/Tests/System/Time.cpp | 3 ++- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/Bigfoot/Sources/System/Include/System/UUID/UUID.hpp b/Bigfoot/Sources/System/Include/System/UUID/UUID.hpp index cd20fca..21ff3b1 100644 --- a/Bigfoot/Sources/System/Include/System/UUID/UUID.hpp +++ b/Bigfoot/Sources/System/Include/System/UUID/UUID.hpp @@ -37,11 +37,8 @@ class UUID ~UUID() = default; - [[nodiscard]] operator std::span() const; - [[nodiscard]] operator std::string() const; - [[nodiscard]] operator bool() const; UUID& operator=(const UUID& p_uuid) = default; diff --git a/Bigfoot/Sources/Utils/Include/Utils/Version.hpp b/Bigfoot/Sources/Utils/Include/Utils/Version.hpp index be7b058..2751ec9 100644 --- a/Bigfoot/Sources/Utils/Include/Utils/Version.hpp +++ b/Bigfoot/Sources/Utils/Include/Utils/Version.hpp @@ -92,8 +92,7 @@ class Version return m_combined; } - [[nodiscard]] - operator std::string() const; + [[nodiscard]] operator std::string() const; constexpr Version& operator=(const Version& p_version) = default; diff --git a/Bigfoot/Tests/System/Time.cpp b/Bigfoot/Tests/System/Time.cpp index 38cc795..6a9b602 100644 --- a/Bigfoot/Tests/System/Time.cpp +++ b/Bigfoot/Tests/System/Time.cpp @@ -18,7 +18,8 @@ class TimeFixture: public ::testing::Test /****************************************************************************************/ -TEST_F(TimeFixture, Year_ShouldReturnTheYear){ +TEST_F(TimeFixture, Year_ShouldReturnTheYear) +{ EXPECT_EQ(m_time.Year(), 2026); }