diff options
author | Med Ismail Bennani <medismail.bennani@gmail.com> | 2023-03-06 13:17:43 -0800 |
---|---|---|
committer | Med Ismail Bennani <medismail.bennani@gmail.com> | 2023-03-06 13:17:43 -0800 |
commit | 20dbb29a1a94c60b556f8880ab841b150e83ab25 (patch) | |
tree | a51e3f55ca4408385bec8486808680dc705d06bf /lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h | |
parent | 480eb744982f2cecd9aa75ef32910fe023d8d4dc (diff) | |
download | llvm-20dbb29a1a94c60b556f8880ab841b150e83ab25.zip llvm-20dbb29a1a94c60b556f8880ab841b150e83ab25.tar.gz llvm-20dbb29a1a94c60b556f8880ab841b150e83ab25.tar.bz2 |
Revert "[lldb] Move ScriptedProcess private state update to implementation"
This reverts commit 3c33d72e7fa83beb8a9b39fb3b8ecf4ee00c697d.
Diffstat (limited to 'lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h')
-rw-r--r-- | lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h b/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h index 33092209..365d499 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h +++ b/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h @@ -201,7 +201,6 @@ template <> struct PythonFormat<short> : PassthroughFormat<short, 'h'> {}; template <> struct PythonFormat<unsigned short> : PassthroughFormat<unsigned short, 'H'> {}; template <> struct PythonFormat<int> : PassthroughFormat<int, 'i'> {}; -template <> struct PythonFormat<bool> : PassthroughFormat<bool, 'p'> {}; template <> struct PythonFormat<unsigned int> : PassthroughFormat<unsigned int, 'I'> {}; template <> struct PythonFormat<long> : PassthroughFormat<long, 'l'> {}; |