Formatting
All checks were successful
Bigfoot / Build & Test Debug (push) Successful in 49s
Bigfoot / Build & Test RelWithDebInfo (push) Successful in 1m1s
Bigfoot / Clang Format Checks (push) Successful in 9s
Bigfoot / Build & Test Release (push) Successful in 34s

This commit is contained in:
2026-02-21 17:08:44 +01:00
parent 90e67de0fc
commit 9b6ab354f3
5 changed files with 8 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
/*********************************************************************
* \file Generator.cpp
* \file Generator.cpp
*
* \author Romain BOULLARD
* \date February 2026

View File

@@ -1,5 +1,5 @@
/*********************************************************************
* \file Generator.cpp
* \file Generator.cpp
*
* \author Romain BOULLARD
* \date February 2026
@@ -14,7 +14,7 @@ namespace Bin2CPP
{
class GeneratorFixture: public ::testing::Test
{
protected:
protected:
Singleton<Log>::Lifetime m_lifetime;
};
} // namespace Bin2CPP

View File

@@ -1,5 +1,5 @@
/*********************************************************************
* \file Log.cpp
* \file Log.cpp
*
* \author Romain BOULLARD
* \date February 2026
@@ -12,7 +12,7 @@ namespace Bin2CPP
{
class LogFixture: public ::testing::Test
{
protected:
protected:
Log m_log;
};

View File

@@ -13,7 +13,7 @@ namespace Bin2CPP
class SingletonFixture: public ::testing::Test
{
protected:
Singleton<std::uint8_t>::Lifetime m_lifetime{8};
Singleton<std::uint8_t>::Lifetime m_lifetime {8};
};
/****************************************************************************************/