forked from OSchip/llvm-project
Add LLDB_API to SBAddress's operator==.
Summary: Add LLDB_API to SBAddress's operator== to fix lldb-mi build on Windows. Patch by Aleksandr Urakov! Differential Revision: https://reviews.llvm.org/D49006 llvm-svn: 336494
This commit is contained in:
parent
e0dae15d91
commit
f906809496
|
@ -101,7 +101,7 @@ protected:
|
|||
|
||||
const lldb_private::Address *operator->() const;
|
||||
|
||||
friend bool operator==(const SBAddress &lhs, const SBAddress &rhs);
|
||||
friend bool LLDB_API operator==(const SBAddress &lhs, const SBAddress &rhs);
|
||||
|
||||
lldb_private::Address *get();
|
||||
|
||||
|
@ -117,7 +117,7 @@ private:
|
|||
std::unique_ptr<lldb_private::Address> m_opaque_ap;
|
||||
};
|
||||
|
||||
bool operator==(const SBAddress &lhs, const SBAddress &rhs);
|
||||
bool LLDB_API operator==(const SBAddress &lhs, const SBAddress &rhs);
|
||||
|
||||
} // namespace lldb
|
||||
|
||||
|
|
Loading…
Reference in New Issue