Skip to content
Snippets Groups Projects
log.hpp 186 B
Newer Older
  • Learn to ignore specific revisions
  • #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);
    }