Skip to content

Commit 0cb5f5d

Browse files
Fix warnings treated as errors in clang.
1 parent 5fef3c6 commit 0cb5f5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythonBuffer.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -671,7 +671,7 @@ namespace classdesc
671671
return cppWrapperType;
672672
}
673673

674-
inline CppWrapper::CppWrapper(const RPPtr& command, bool special): command(command), special(special) {
674+
inline CppWrapper::CppWrapper(const RPPtr& command, bool special): special(special), command(command) {
675675
ob_refcnt=1;
676676
ob_type=&CppWrapperTypeSingleton();
677677
}

0 commit comments

Comments
 (0)