[Lldb-commits] [PATCH] D14524: Create a `PythonModule` class and add a root-level method for name lookup
Zachary Turner via lldb-commits
lldb-commits at lists.llvm.org
Mon Nov 9 19:25:16 PST 2015
zturner added inline comments.
================
Comment at: source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h:369-374
@@ +368,8 @@
+
+ template <typename T>
+ T
+ ResolveNameAs(llvm::StringRef name) const
+ {
+ return ResolveName(name).AsType<T>();
+ }
+};
----------------
I need to delete this method. This was left in by accident. The real implementation is in the base class.
http://reviews.llvm.org/D14524
More information about the lldb-commits
mailing list