mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-21 03:32:29 +00:00
[Orc] Fix the MSVC bots by using LLVM_EXPLICIT rather than explicit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@228564 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
cc5e6d56fc
commit
cda59be931
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user