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
* \date February 2026
@@ -9,4 +9,4 @@
namespace Bin2CPP
{
} // namespace Bin2CPP
} // namespace Bin2CPP

View File

@@ -11,4 +11,4 @@ namespace Bin2CPP
{
} // namespace Bin2CPP
#endif
#endif

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