mirror of
https://github.com/Ed94/gencpp.git
synced 2024-11-10 11:04:52 -08:00
36 lines
529 B
C++
36 lines
529 B
C++
|
// Standard Allocation
|
||
|
#undef new
|
||
|
#undef delete
|
||
|
|
||
|
// Standard Coroutines
|
||
|
#undef co_await
|
||
|
#undef co_return
|
||
|
#undef co_yield
|
||
|
|
||
|
// Standard Exceptions
|
||
|
#undef atomic_cancel
|
||
|
#undef atomic_commit
|
||
|
#undef atomic_noexcept
|
||
|
#undef catch
|
||
|
#undef noexcept
|
||
|
#undef throw
|
||
|
#undef try
|
||
|
|
||
|
// Standard RTTI
|
||
|
#undef decltype
|
||
|
#undef reflexpr
|
||
|
#undef typeid
|
||
|
|
||
|
// Object-Oriented Dynamic Dispatch
|
||
|
#undef final
|
||
|
#undef override
|
||
|
#undef virtual
|
||
|
|
||
|
// Private Access Specifier
|
||
|
#undef private
|
||
|
|
||
|
// Template Meta-programming
|
||
|
#undef concept
|
||
|
#undef requires
|
||
|
#undef template
|