cp-library-cpp

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub suisen-cp/cp-library-cpp

:heavy_check_mark: Warning
(library/debug/warning.hpp)

Warning

Required by

Verified with

Code

#ifndef SUISEN_WARNING
#define SUISEN_WARNING

#include <iostream>

namespace suisen {
    struct warning {
        warning(const std::string &msg) {
            std::cerr << "\033[33m[WARNING] " << msg << "\033[0m" << std::endl;
        }
    };
} // namespace suisen

#endif // SUISEN_WARNING
#line 1 "library/debug/warning.hpp"



#include <iostream>

namespace suisen {
    struct warning {
        warning(const std::string &msg) {
            std::cerr << "\033[33m[WARNING] " << msg << "\033[0m" << std::endl;
        }
    };
} // namespace suisen
Back to top page