Use C++ includes

toml-checker
Peter Meerwald-Stadler 2 years ago
parent 1c23469c8c
commit 8ebf69da7e

@ -5,9 +5,9 @@
#include "fs.hpp"
#include <sstream>
#include <stddef.h>
#include <cstddef>
#include <stdexcept>
#include <stdlib.h>
#include <cstdlib>
#include <system_error>
namespace cmkr {
@ -94,4 +94,4 @@ int cmkr_build_install(void) {
} catch (...) {
return cmkr::error::Status(cmkr::error::Status::Code::InstallError);
}
}
}

@ -1,6 +1,6 @@
#include "error.hpp"
#include <assert.h>
#include <cassert>
namespace cmkr {
namespace error {

Loading…
Cancel
Save