Skip to content

Commit

Permalink
fix -Wunused-variable
Browse files Browse the repository at this point in the history
  • Loading branch information
wwmayer committed Jan 27, 2017
1 parent a460c54 commit 36e1d07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Base/PyObjectBase.h
Expand Up @@ -96,7 +96,7 @@
#if PY_MAJOR_VERSION >= 3
# define PyMOD_Return(name) return name
#else
# define PyMOD_Return(name) return
# define PyMOD_Return(name) return (void)name
#endif

/**
Expand Down

0 comments on commit 36e1d07

Please sign in to comment.