[Orc] Fix the MSVC bots by using LLVM_EXPLICIT rather than explicit.
authorLang Hames <lhames@gmail.com>
Mon, 9 Feb 2015 04:46:41 +0000 (04:46 +0000)
committerLang Hames <lhames@gmail.com>
Mon, 9 Feb 2015 04:46:41 +0000 (04:46 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@228564 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ExecutionEngine/Orc/JITSymbol.h

index c55e43c2a17b92481294c2ded74d4185d0d611f6..b0ad26346a859f322d45a03d3033a25e4a01eaa7 100644 (file)
@@ -14,6 +14,7 @@
 #ifndef LLVM_EXECUTIONENGINE_ORC_JITSYMBOL_H
 #define LLVM_EXECUTIONENGINE_ORC_JITSYMBOL_H
 
+#include "llvm/Support/Compiler.h"
 #include <functional>
 
 namespace llvm {
@@ -32,7 +33,7 @@ public:
       : CachedAddr(0), GetAddress(std::move(GetAddress)) {}
 
   /// @brief Returns true if the symbol exists, false otherwise.
-  explicit operator bool() const { return CachedAddr || GetAddress; }
+  LLVM_EXPLICIT operator bool() const { return CachedAddr || GetAddress; }
 
   /// @brief Get the address of the symbol in the target address space. Returns
   ///        '0' if the symbol does not exist.