diff options
author | Zachary Turner <zturner@google.com> | 2015-11-12 17:01:48 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-11-12 17:01:48 +0000 |
commit | 02bf92d22651dd7feb2828974fdcc5dc0e23ddfb (patch) | |
tree | f217dfc077c6da0537bef5c82bd9d099991a2902 /lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h | |
parent | fd3fe9e45aeadd4cfb41966c7bd5e7c36c687ab0 (diff) | |
download | bcm5719-llvm-02bf92d22651dd7feb2828974fdcc5dc0e23ddfb.tar.gz bcm5719-llvm-02bf92d22651dd7feb2828974fdcc5dc0e23ddfb.zip |
Fix non-Windows build after r252906.
llvm-svn: 252909
Diffstat (limited to 'lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h')
-rw-r--r-- | lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h b/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h index 3794cc04a65..a23052f6871 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h +++ b/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h @@ -205,11 +205,11 @@ public: Str() const; static PythonObject - ResolveNameWithDictionary(llvm::StringRef name, PythonDictionary dict); + ResolveNameWithDictionary(llvm::StringRef name, const PythonDictionary &dict); template<typename T> static T - ResolveNameWithDictionary(llvm::StringRef name, PythonDictionary dict) + ResolveNameWithDictionary(llvm::StringRef name, const PythonDictionary &dict) { return ResolveNameWithDictionary(name, dict).AsType<T>(); } |