[Lldb-commits] [PATCH] D11533: Add SBValue::TypeIsReferenceType to SB API.
Greg Clayton
clayborg at gmail.com
Mon Jul 27 14:11:03 PDT 2015
clayborg added a comment.
API was added that should never have made it into the SB API:
``
bool
SBValue::TypeIsPointerType ();
This led to others seeing this code and thinking it was OK. Now that the above function is in our API we can't remove it, but we should encourage the use of SBValue::GetType().XXX() from here on out.
http://reviews.llvm.org/D11533
More information about the lldb-commits
mailing list