File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,6 +16,13 @@ namespace al
1616
1717 }
1818
19+ LogIntermediate::LogIntermediate (const std::string &formatString, const std::source_location location) :
20+ m_FormatString (formatString),
21+ m_Location (location)
22+ {
23+
24+ }
25+
1926 const std::string_view LogIntermediate::FormatString () const
2027 {
2128 return m_FormatString;
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ namespace al
99 public:
1010 LogIntermediate (const std::string_view formatString, const std::source_location location = std::source_location::current());
1111 LogIntermediate (const char * formatString, const std::source_location location = std::source_location::current());
12+ LogIntermediate (const std::string& formatString, const std::source_location location = std::source_location::current());
1213 virtual ~LogIntermediate () = default ;
1314
1415 const std::string_view FormatString () const ;
You can’t perform that action at this time.
0 commit comments