Move log_tr implementation to separate translation unit
This commit is contained in:
6
AdaptiveBrightness/log_tr.cpp
Normal file
6
AdaptiveBrightness/log_tr.cpp
Normal file
@@ -0,0 +1,6 @@
|
||||
#include "log_tr.hpp"
|
||||
|
||||
detail::LogTr ltr(const char* formatString)
|
||||
{
|
||||
return detail::LogTr(formatString);
|
||||
}
|
||||
@@ -33,7 +33,4 @@ class LogTr {
|
||||
|
||||
} // namespace detail
|
||||
|
||||
detail::LogTr ltr(const char* formatString)
|
||||
{
|
||||
return detail::LogTr(formatString);
|
||||
}
|
||||
detail::LogTr ltr(const char* formatString);
|
||||
|
||||
Reference in New Issue
Block a user