Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview

Artifact ID: 8faeb3147b86a6f1df7665466becb1206ed84ac0
Page Name:Features/Keywords
Date: 2015-04-20 15:50:49
Original User: luismachuca
Parent: e865d7ff1076409115acdd8f9b55cb1f038bfbc6 (diff)
Content

This library adds the following C++11 keywords to C++03 verbatim:

  • alignof -- obtain alignment of a type
  • nullptr -- null pointer literal
  • static_assert -- compile-time asserts

If you get warnings in C++03 indicating that one of these keywords is in use (some compilers warn about them as a compatibility measure) then that actually means that the library is working correctly. Disregard those warnings (they apparently can't be disabled in GCC).

The following keywords are not present in this library:

  • auto
  • constexpr -- see CXXO_CONSTEXPR instead
  • decltype -- see CXXO_DECLTYPE instead
  • noexcept -- see CXXO_NOEXCEPT instead
  • thread_local