Changes between Version 28 and Version 29 of Guidelines/WarningsGuidelines


Ignore:
Timestamp:
Dec 6, 2012, 3:21:19 PM (10 years ago)
Author:
Paul A. Bristow
Comment:

Corrected typo in <toolset>clang:<cxxflags>-Wno-reorder

Legend:

Unmodified
Added
Removed
Modified
  • Guidelines/WarningsGuidelines

    v28 v29  
    149149    : requirements
    150150      <toolset>gcc:<cxxflags>-Wno-missing-braces
     151      <toolset>clang:<cxxflags>-Wno-missing-braces
    151152      <toolset>darwin:<cxxflags>-Wno-missing-braces
    152153      <toolset>acc:<cxxflags>+W2068,2461,2236,4070,4069 # Comments on warning message help readers who do not have ACC documentation to hand.
     
    944945In a jamfile, add, for example:
    945946{{{
    946 <toolset=clang><cxxflags>-Wno-unused-variable
    947 <cxxflags>-Wno-maybe-uninitialized
     947<toolset>clang:<cxxflags>-Wno-reorder
     948<toolset>clang:<cxxflags>-Wno-unused-variable
     949<toolset>clang<cxxflags>-Wno-maybe-uninitialized
    948950...
    949951}}}