View on GitHub

Jules documentation

Documentation of the Jules library

Home Tutorial Modules Entities Files

Header file core/debug.hpp

#define JULES_CORE_DEBUG_H

#define JULES_DEBUG_LEVEL

namespace jules
{
    namespace debug
    {
        namespace level
        {
            constexpr auto unreachable = debug_assert::level<1u>{};
            
            constexpr auto invalid_argument = debug_assert::level<2u>{};
            
            constexpr auto invalid_state = debug_assert::level<2u>{};
            
            constexpr auto boundary_check = debug_assert::level<3u>{};
            
            constexpr auto extents_check = debug_assert::level<3u>{};
        }
        
        struct fatal_module_t;
        
        struct throwing_module_t;
        
        const auto default_module = fatal_module_t{};
        
        const auto throwing_module = throwing_module_t{};
    }
}

Namespace jules::debug::level

namespace level
{
    constexpr auto unreachable = debug_assert::level<1u>{};
    
    constexpr auto invalid_argument = debug_assert::level<2u>{};
    
    constexpr auto invalid_state = debug_assert::level<2u>{};
    
    constexpr auto boundary_check = debug_assert::level<3u>{};
    
    constexpr auto extents_check = debug_assert::level<3u>{};
}

Debug level for each kind of checking.