[PATCH] D49006: Add LLDB_API to SBAddress's operator==
Alexander Polyakov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sat Jul 7 11:59:56 PDT 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL336494: Add LLDB_API to SBAddress's operator==. (authored by apolyakov, committed by ).
Herald added a subscriber: llvm-commits.
Changed prior to commit:
https://reviews.llvm.org/D49006?vs=154360&id=154498#toc
Repository:
rL LLVM
https://reviews.llvm.org/D49006
Files:
lldb/trunk/include/lldb/API/SBAddress.h
Index: lldb/trunk/include/lldb/API/SBAddress.h
===================================================================
--- lldb/trunk/include/lldb/API/SBAddress.h
+++ lldb/trunk/include/lldb/API/SBAddress.h
@@ -101,7 +101,7 @@
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 @@
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
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D49006.154498.patch
Type: text/x-patch
Size: 706 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180707/8a35a535/attachment.bin>
More information about the llvm-commits
mailing list