V1 #2

Merged
rboullard merged 65 commits from V1 into Development 2026-03-29 09:30:59 +00:00
5 changed files with 8 additions and 8 deletions
Showing only changes of commit 9b6ab354f3 - Show all commits

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};
}; };
/****************************************************************************************/ /****************************************************************************************/