Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(800)

Side by Side Diff: build/standalone.gypi

Issue 1551453002: Stop disabling compiler warning 4481, v8 edition. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 827 matching lines...) Expand 10 before | Expand all | Expand 10 after
838 838
839 # TODO(jochen): These warnings are level 4. They will be slowly 839 # TODO(jochen): These warnings are level 4. They will be slowly
840 # removed as code is fixed. 840 # removed as code is fixed.
841 4100, # Unreferenced formal parameter 841 4100, # Unreferenced formal parameter
842 4121, # Alignment of a member was sensitive to packing 842 4121, # Alignment of a member was sensitive to packing
843 4244, # Conversion from 'type1' to 'type2', possible loss of data 843 4244, # Conversion from 'type1' to 'type2', possible loss of data
844 4302, # Truncation from 'type 1' to 'type 2' 844 4302, # Truncation from 'type 1' to 'type 2'
845 4309, # Truncation of constant value 845 4309, # Truncation of constant value
846 4311, # Pointer truncation from 'type' to 'type' 846 4311, # Pointer truncation from 'type' to 'type'
847 4312, # Conversion from 'type1' to 'type2' of greater size 847 4312, # Conversion from 'type1' to 'type2' of greater size
848 4481, # Nonstandard extension used: override specifier 'keyword'
849 4505, # Unreferenced local function has been removed 848 4505, # Unreferenced local function has been removed
850 4510, # Default constructor could not be generated 849 4510, # Default constructor could not be generated
851 4512, # Assignment operator could not be generated 850 4512, # Assignment operator could not be generated
852 4610, # Object can never be instantiated 851 4610, # Object can never be instantiated
853 4800, # Forcing value to bool. 852 4800, # Forcing value to bool.
854 4838, # Narrowing conversion. Doesn't seem to be very useful. 853 4838, # Narrowing conversion. Doesn't seem to be very useful.
855 4995, # 'X': name was marked as #pragma deprecated 854 4995, # 'X': name was marked as #pragma deprecated
856 4996, # 'X': was declared deprecated (for GetVersionEx). 855 4996, # 'X': was declared deprecated (for GetVersionEx).
857 856
858 # These are variable shadowing warnings that are new in VS2015. We 857 # These are variable shadowing warnings that are new in VS2015. We
(...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after
1362 '-fsanitize=cfi-vcall', 1361 '-fsanitize=cfi-vcall',
1363 '-fsanitize=cfi-derived-cast', 1362 '-fsanitize=cfi-derived-cast',
1364 '-fsanitize=cfi-unrelated-cast', 1363 '-fsanitize=cfi-unrelated-cast',
1365 ], 1364 ],
1366 }], 1365 }],
1367 ], 1366 ],
1368 }, 1367 },
1369 }], 1368 }],
1370 ], 1369 ],
1371 } 1370 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698