Skip to content

Commit 0849d53

Browse files
committed
"at least Python 3.0"
1 parent 2d4b486 commit 0849d53

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lldb/source/Plugins/ScriptInterpreter/Python/lldb-python.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ static llvm::Expected<bool> *g_fcxx_modules_workaround [[maybe_unused]];
5050

5151
// Provide a meaningful diagnostic error if someone tries to compile this file
5252
// with a version of Python we don't support.
53-
static_assert(PY_VERSION_HEX >= 0x03000000, "LLDB requires Python 3.0");
53+
static_assert(PY_VERSION_HEX >= 0x03000000,
54+
"LLDB requires at least Python 3.0");
5455
#endif
5556

5657
#endif // LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_LLDB_PYTHON_H

0 commit comments

Comments
 (0)