[PATCH] D67103: [cmake] Remove MSVC C4180 override

Simon Pilgrim via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Sep 4 03:25:41 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL370871: [cmake] Remove MSVC C4180 override (authored by RKSimon, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D67103?vs=218462&id=218633#toc

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D67103/new/

https://reviews.llvm.org/D67103

Files:
  llvm/trunk/cmake/modules/HandleLLVMOptions.cmake


Index: llvm/trunk/cmake/modules/HandleLLVMOptions.cmake
===================================================================
--- llvm/trunk/cmake/modules/HandleLLVMOptions.cmake
+++ llvm/trunk/cmake/modules/HandleLLVMOptions.cmake
@@ -502,7 +502,6 @@
       # Disabled warnings.
       -wd4141 # Suppress ''modifier' : used more than once' (because of __forceinline combined with inline)
       -wd4146 # Suppress 'unary minus operator applied to unsigned type, result still unsigned'
-      -wd4180 # Suppress 'qualifier applied to function type has no meaning; ignored'
       -wd4244 # Suppress ''argument' : conversion from 'type1' to 'type2', possible loss of data'
       -wd4267 # Suppress ''var' : conversion from 'size_t' to 'type', possible loss of data'
       -wd4291 # Suppress ''declaration' : no matching operator delete found; memory will not be freed if initialization throws an exception'


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D67103.218633.patch
Type: text/x-patch
Size: 906 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190904/4b2d7191/attachment.bin>


More information about the llvm-commits mailing list