[Lldb-commits] [PATCH] D68181: SBDebugger::SetInputFile, SetOutputFile, etc.
Pavel Labath via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue Oct 1 03:08:32 PDT 2019
labath accepted this revision.
labath added a comment.
This revision is now accepted and ready to land.
LGTM. thanks.
================
Comment at: lldb/include/lldb/API/SBFile.h:31-36
operator bool() const { return IsValid(); }
bool operator!() const { return !IsValid(); }
private:
FileSP m_opaque_sp;
+ SBFile(FileSP file_sp) : m_opaque_sp(file_sp) {}
----------------
All (including private) SB methods should be defined out of line. Otherwise, their implementation becomes a part of the ABI.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D68181/new/
https://reviews.llvm.org/D68181
More information about the lldb-commits
mailing list