diff --git a/AdaptiveBrightness/log_tr.cpp b/AdaptiveBrightness/log_tr.cpp new file mode 100644 index 0000000..4d909b9 --- /dev/null +++ b/AdaptiveBrightness/log_tr.cpp @@ -0,0 +1,6 @@ +#include "log_tr.hpp" + +detail::LogTr ltr(const char* formatString) +{ + return detail::LogTr(formatString); +} diff --git a/AdaptiveBrightness/log_tr.hpp b/AdaptiveBrightness/log_tr.hpp index 7e45e21..1e823f9 100644 --- a/AdaptiveBrightness/log_tr.hpp +++ b/AdaptiveBrightness/log_tr.hpp @@ -33,7 +33,4 @@ class LogTr { } // namespace detail -detail::LogTr ltr(const char* formatString) -{ - return detail::LogTr(formatString); -} +detail::LogTr ltr(const char* formatString);