CETL 0.0.0
 
Loading...
Searching...
No Matches
cetl.hpp File Reference
This graph shows which files directly or indirectly include this file:

Namespaces

namespace  cetl
 
namespace  cetl::pmr
 

Macros

#define CETL_H_ERASE
 
#define CETL_VERSION_PATCH   0
 
#define CETL_VERSION_MINOR   4
 
#define CETL_VERSION_MAJOR   1
 
#define CETL_DEBUG_ASSERT(c, m)
 
#define CETL_CPP_STANDARD_14   201402L
 
#define CETL_CPP_STANDARD_17   201703L
 
#define CETL_CPP_STANDARD_20   202002L
 
#define CETL_NODISCARD   [[nodiscard]]
 

Detailed Description

CETL common header.

Note
Keep this very spare. CETL's desire is to adapt to future C++ standards and too many CETL-specific definitions makes it difficult for users to switch off of CETL in the future.

Macro Definition Documentation

◆ CETL_DEBUG_ASSERT

#define CETL_DEBUG_ASSERT ( c,
m )
Value:
((void) (m))

When CETL_ENABLE_DEBUG_ASSERT is defined and not 0 then this is redirected to assert as included from <cassert>.

Because assert does not support a failure message we embed the m argument in a comma operator statement such that the compiler places the both the text and the failure clause c in the text section of the binary which is normally shown from standard error when an assert occurs.

When CETL_ENABLE_DEBUG_ASSERT is not defined or is 0 then these statements have no effect and should not effect the resulting binary.

Warning
Define CETL_ENABLE_DEBUG_ASSERT as 1 to enable assertions within CETL code. Enabling this in production code is strongly discouraged.

Referenced by cetl::pf20::span< T, Extent >::back(), cetl::pf20::span< T, Extent >::first(), cetl::pf20::span< T, Extent >::front(), cetl::VariableLengthArray< T, Allocator >::front(), cetl::VariableLengthArray< T, Allocator >::front(), cetl::VariableLengthArray< bool, Allocator >::front(), cetl::VariableLengthArray< bool, Allocator >::front(), cetl::pmr::function< Result(Args...), Footprint, Pmr >::function(), cetl::pf20::span< T, Extent >::last(), cetl::pmr::function< Result(Args...), Footprint, Pmr >::operator bool(), cetl::pmr::function< Result(Args...), Footprint, Pmr >::operator()(), cetl::pmr::MemoryResourceDeleter< MemoryResourceType >::operator()(), cetl::pmr::PmrInterfaceDeleter< Interface >::operator()(), cetl::pf20::span< T, Extent >::operator[](), cetl::pf17::pmr::polymorphic_allocator< T >::polymorphic_allocator(), cetl::pf20::span< T, Extent >::span(), cetl::pf20::span< T, Extent >::span(), cetl::pf20::span< T, Extent >::span(), and cetl::pf20::span< T, Extent >::subspan().

◆ CETL_H_ERASE

#define CETL_H_ERASE

If CETL_H_ERASE is defined then all CETL types will exclude all cetl headers which removes all common dependencies, other than C++ standard headers, from CETL.

The types will not build due to missing macros and/or type aliases but the user can re-define these based on subsequent compiler errors. This allows elision of cetl.hpp and dependencies on CETL polyfill types without modifying CETL source code. Note that CETL polyfill headers cannot be used if CETL_H_ERASE is defined.

◆ CETL_NODISCARD