C++ style guide: Difference between revisions

10 bytes added ,  17 August 2016
Line 110: Line 110:
and requires approval from other maintainers.
and requires approval from other maintainers.


  #if HAVE_THIS_C14_FEATURE
  #if defined (HAVE_THIS_C14_FEATURE)
   // code that really needs it
   // code that really needs it
  #else
  #else
   // alternative code in its absence
   // alternative code in its absence
  #endif
  #endif