diff options
author | Douglas Yung <douglas.yung@sony.com> | 2019-02-21 04:55:31 +0000 |
---|---|---|
committer | Douglas Yung <douglas.yung@sony.com> | 2019-02-21 04:55:31 +0000 |
commit | 38dd1b3726c2d2558cc5745f91d0d8c9cbc321df (patch) | |
tree | d22b64f2a8afbfb09520d29f010fc0f1d99f873a | |
parent | 1634516e3538b9df51fd479b28ef18355a5c4a66 (diff) | |
download | bcm5719-llvm-38dd1b3726c2d2558cc5745f91d0d8c9cbc321df.tar.gz bcm5719-llvm-38dd1b3726c2d2558cc5745f91d0d8c9cbc321df.zip |
Attempt to fix VS2015 build breakage from r354517. NFCI.
llvm-svn: 354545
-rw-r--r-- | clang-tools-extra/clang-tidy/utils/ExceptionAnalyzer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/clang-tidy/utils/ExceptionAnalyzer.h b/clang-tools-extra/clang-tidy/utils/ExceptionAnalyzer.h index 53a6aebdc91..ac1969763b1 100644 --- a/clang-tools-extra/clang-tidy/utils/ExceptionAnalyzer.h +++ b/clang-tools-extra/clang-tidy/utils/ExceptionAnalyzer.h @@ -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 |