Formatting

This commit is contained in:
2026-02-21 17:08:44 +01:00
committed by Romain BOULLARD
parent 19e53feccd
commit 64bbcdd64a
5 changed files with 8 additions and 8 deletions

View File

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

View File

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

View File

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

View File

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