Changes between Version 30 and Version 31 of Guidelines/MaintenanceGuidelines


Ignore:
Timestamp:
Nov 19, 2009, 12:47:37 PM (13 years ago)
Author:
Paul A. Bristow
Comment:

C4503 decorated name length exceeded added

Legend:

Unmodified
Added
Removed
Modified
  • Guidelines/MaintenanceGuidelines

    v30 v31  
    729729
    730730||C4324||structure was padded due to __declspec(align())||Suppress||#pragma warning(disable:4324) // structure was padded due to __declspec(align())||
     731
     732||C4503||decorated name length exceeded||Suppress.  (Note that \boost\config\compiler\visualc.hpp includes this global suppression: #pragma warning(disable:4503)||#pragma warning( disable : 4503 ) // warning: decorated name length exceeded||
    731733
    732734||C4506||no definition for inline function||Provide a definition, or if you cannot/will not, suppress.||#  pragma warning(disable: 4506) // no definition for inline function||