We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d4b486 commit 0849d53Copy full SHA for 0849d53
lldb/source/Plugins/ScriptInterpreter/Python/lldb-python.h
@@ -50,7 +50,8 @@ static llvm::Expected<bool> *g_fcxx_modules_workaround [[maybe_unused]];
50
51
// Provide a meaningful diagnostic error if someone tries to compile this file
52
// with a version of Python we don't support.
53
-static_assert(PY_VERSION_HEX >= 0x03000000, "LLDB requires Python 3.0");
+static_assert(PY_VERSION_HEX >= 0x03000000,
54
+ "LLDB requires at least Python 3.0");
55
#endif
56
57
#endif // LLDB_PLUGINS_SCRIPTINTERPRETER_PYTHON_LLDB_PYTHON_H
0 commit comments