mirror of
https://github.com/build-cpp/cmkr
synced 2026-06-08 13:22:55 +00:00
a90988b81a
This makes it less annoying when the IDE is auto-formatting while you type
32 lines
698 B
C++
32 lines
698 B
C++
#include "error.hpp"
|
|
|
|
#include <cassert>
|
|
#include <cstddef>
|
|
|
|
namespace cmkr {
|
|
namespace error {
|
|
|
|
Status::Status(Code ec) noexcept : ec_(ec) {
|
|
}
|
|
|
|
Status::operator int() const noexcept {
|
|
return static_cast<int>(ec_);
|
|
}
|
|
|
|
Status::Code Status::code() const noexcept {
|
|
return ec_;
|
|
}
|
|
|
|
} // namespace error
|
|
} // namespace cmkr
|
|
|
|
// strings for cmkr::error::Status::Code
|
|
static const char *err_string[] = {
|
|
"Success", "Runtime error", "Initialization error", "CMake generation error", "Build error", "Clean error", "Install error",
|
|
};
|
|
|
|
const char *cmkr_error_status(int i) {
|
|
assert(i >= 0 && static_cast<size_t>(i) < (sizeof(err_string) / sizeof(*(err_string))));
|
|
return err_string[i];
|
|
}
|