diff options
Diffstat (limited to 'unittests/Support/Casting.cpp')
-rw-r--r-- | unittests/Support/Casting.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/Support/Casting.cpp b/unittests/Support/Casting.cpp index 3218189eeab6c..e6c35fc21eb7d 100644 --- a/unittests/Support/Casting.cpp +++ b/unittests/Support/Casting.cpp @@ -250,7 +250,7 @@ class PTy { Base *B; public: PTy(Base *B) : B(B) {} - LLVM_EXPLICIT operator bool() const { return get(); } + explicit operator bool() const { return get(); } Base *get() const { return B; } }; |