mirror of
https://github.com/intel/llvm.git
synced 2026-01-19 09:31:59 +08:00
Fix an incomplete null structure spec in Python readline suppression module.
Now that I'm building Linux with clang, I'm seeing more clang warnings. This fills in some extra fields missing in the final end-of-structure-array marker. llvm-svn: 211812
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
|
||||
static struct PyMethodDef moduleMethods[] =
|
||||
{
|
||||
{0, 0}
|
||||
{nullptr, nullptr, 0, nullptr}
|
||||
};
|
||||
|
||||
PyDoc_STRVAR(
|
||||
|
||||
Reference in New Issue
Block a user