Skip to content

Commit 9dabe6d

Browse files
committed
chore: changed namespace to 'al'
1 parent 6a7f471 commit 9dabe6d

10 files changed

Lines changed: 10 additions & 10 deletions

src/LogCapture.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include "LogCapture.hpp"
22
#include "Logger.hpp"
33

4-
namespace base
4+
namespace al
55
{
66
LogCapture::LogCapture(const eLogLevel level, std::source_location&& location) :
77
m_Level(level),

src/LogCapture.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include <sstream>
44
#include "LogLevel.hpp"
55

6-
namespace base
6+
namespace al
77
{
88
class Logger;
99
class LogCapture

src/LogIntermediate.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include "LogIntermediate.hpp"
22

3-
namespace base
3+
namespace al
44
{
55
LogIntermediate::LogIntermediate(const std::string_view formatString, const std::source_location location) :
66
m_FormatString(formatString),

src/LogIntermediate.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include <source_location>
33
#include <string_view>
44

5-
namespace base
5+
namespace al
66
{
77
class LogIntermediate
88
{

src/LogLevel.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma once
22

3-
namespace base
3+
namespace al
44
{
55
enum eLogLevel
66
{

src/LogMessage.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include "LogMessage.hpp"
22
#include "LogLevel.hpp"
33

4-
namespace base
4+
namespace al
55
{
66
LogMessage::LogMessage(const eLogLevel level, std::source_location&& location, std::string&& message) :
77
m_Level(level),

src/LogMessage.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include <string>
44
#include "LogLevel.hpp"
55

6-
namespace base
6+
namespace al
77
{
88
class LogMessage
99
{

src/Logger.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include "LogCapture.hpp"
33
#include "LogMessage.hpp"
44

5-
namespace base
5+
namespace al
66
{
77
LogCapture LOG(const eLogLevel level, std::source_location location)
88
{

src/Logger.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#include "LogLevel.hpp"
1818
#include "LogMessage.hpp"
1919

20-
namespace base
20+
namespace al
2121
{
2222
using LogMessagePtr = std::shared_ptr<LogMessage>;
2323
using LogSink = std::function<void(LogMessagePtr)>;

src/concurrency/shared_queue.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* from Kjellkod/concurrent on Github
99
*
1010
*/
11-
namespace base
11+
namespace al
1212
{
1313
template<typename T>
1414
class shared_queue

0 commit comments

Comments
 (0)