Program Listing for File internals.hpp

Return to documentation for file (/home/runner/work/Legion-Engine/Legion-Engine/legion/engine/core/detail/internals.hpp)

#pragma once

#include <cassert>

/***********************************
 * This file is for internal use
 * only, we do not recommend using
 * any of the functions or macros
 * defined here in your own code as
 * they can lead to unexpected
 * crashes
 ***********************************/


#define assert_msg(msg,expr) assert(((void)(msg),(expr)))

#include <core/common/exception.hpp>