Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Don't include structmember.h twice
  • Loading branch information
Erlend E. Aasland committed Oct 5, 2020
commit d093796c29fe7d437fc21afcdc1f9b30a5e85816
1 change: 0 additions & 1 deletion Modules/_sqlite/connection.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@

#include "cache.h"
#include "module.h"
#include "structmember.h" // PyMemberDef
Comment thread
erlend-aasland marked this conversation as resolved.
Outdated
#include "connection.h"
#include "statement.h"
#include "cursor.h"
Expand Down
2 changes: 1 addition & 1 deletion Modules/_sqlite/connection.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#define PYSQLITE_CONNECTION_H
#define PY_SSIZE_T_CLEAN
#include "Python.h"
#include "structmember.h"
#include "structmember.h" // PyMemberDef

#include "cache.h"
#include "module.h"
Expand Down