Move log_tr implementation to separate translation unit
This commit is contained in:
parent
f22108fe03
commit
4a2590ff0e
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);
|
||||
|
Loading…
Reference in New Issue
Block a user