[clang-tools-extra] r354545 - Attempt to fix VS2015 build breakage from r354517. NFCI.

Douglas Yung via cfe-commits cfe-commits at lists.llvm.org
Wed Feb 20 20:55:31 PST 2019


Author: dyung
Date: Wed Feb 20 20:55:31 2019
New Revision: 354545

URL: http://llvm.org/viewvc/llvm-project?rev=354545&view=rev
Log:
Attempt to fix VS2015 build breakage from r354517. NFCI.

Modified:
    clang-tools-extra/trunk/clang-tidy/utils/ExceptionAnalyzer.h

Modified: clang-tools-extra/trunk/clang-tidy/utils/ExceptionAnalyzer.h
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clang-tidy/utils/ExceptionAnalyzer.h?rev=354545&r1=354544&r2=354545&view=diff
==============================================================================
--- clang-tools-extra/trunk/clang-tidy/utils/ExceptionAnalyzer.h (original)
+++ clang-tools-extra/trunk/clang-tidy/utils/ExceptionAnalyzer.h Wed Feb 20 20:55:31 2019
@@ -109,7 +109,7 @@ public:
 
     /// Keep track if the entity related to this 'ExceptionInfo' can in princple
     /// throw, if it's unknown or if it won't throw.
-    enum State Behaviour : 2;
+    State Behaviour : 2;
 
     /// Keep track if the entity contains any unknown elements to keep track
     /// of the certainty of decisions and/or correct 'Behaviour' transition




More information about the cfe-commits mailing list