Changes between Version 30 and Version 31 of Guidelines/MaintenanceGuidelines
- Timestamp:
- Nov 19, 2009, 12:47:37 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Guidelines/MaintenanceGuidelines
v30 v31 729 729 730 730 ||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|| 731 733 732 734 ||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||