[Lldb-commits] [PATCH] D79603: Add an API to construct an XcodeSDK from an SDK type.

Jonas Devlieghere via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Fri May 8 10:44:20 PDT 2020


JDevlieghere accepted this revision.
JDevlieghere added inline comments.
This revision is now accepted and ready to land.


================
Comment at: lldb/source/Utility/XcodeSDK.cpp:145
+bool XcodeSDK::Info::operator==(const Info &other) const {
+  return std::tie(type, version, internal) ==
+         std::tie(other.type, other.version, other.internal);
----------------
Cool :P 


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D79603/new/

https://reviews.llvm.org/D79603





More information about the lldb-commits mailing list