-
Nicolas Werner authored
Qt < 5.9 moc chokes on that
Nicolas Werner authoredQt < 5.9 moc chokes on that
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
log.hpp 186 B
#pragma once
#include <string_view>
namespace mtx {
namespace utils {
namespace log {
void
log_warning(const std::string_view &msg);
void
log_error(const std::string_view &msg);
}
}
}