#pragma once
namespace __jitify_stdexcept_ns {
    struct runtime_error {
        explicit runtime_error( const std::string& what_arg );
        explicit runtime_error( const char* what_arg );
        virtual const char* what() const;
    };
} // namespace __jitify_stdexcept_ns
namespace std { using namespace __jitify_stdexcept_ns; }
using namespace __jitify_stdexcept_ns;
