Go to the source code of this file.
◆ TETL_ASSERT
◆ TETL_ASSERT_IMPL
      
        
          | #define TETL_ASSERT_IMPL | 
          ( | 
            | 
          ... | ) | 
           | 
        
      
 
Value:    do {                                                                                                               \
        if (not(__VA_ARGS__)) [[unlikely]] {                                                                           \
                                                                                               \
            etl::assert_handler(                                                                                       \
                    .file       = __FILE__,                                                                            \
                }                                                                                                      \
            );                                                                                                         \
        }                                                                                                              \
    } while (false)
#define TETL_BUILTIN_FUNCTION()
Definition builtin_functions.hpp:28
 
Definition adjacent_find.hpp:9
 
consteval auto is_hosted() noexcept -> bool
Definition implementation.hpp:20
 
#define TETL_STRINGIFY(str)
Definition preprocessor.hpp:28
 
Payload for an assertion.
Definition assert.hpp:22
 
int line
Definition assert.hpp:23
 
 
 
 
◆ exit()
  
  
      
        
          | auto exit  | 
          ( | 
          int  | 
           | ) | 
           -> void  | 
         
       
   | 
  
inline   |