Skip to content

Commit 84976a0

Browse files
committed
Avoid some compiler warnings
1 parent 6f81c9a commit 84976a0

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

generator/typesystem.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
* changed to Qt::endl.
7979
*/
8080
#if QT_VERSION >= QT_VERSION_CHECK(6,0,0)
81-
static const constexpr decltype (Qt::endl) *endl = Qt::endl;
81+
static constexpr decltype (Qt::endl) *endl = Qt::endl;
8282
#endif
8383
/* END: Qt compatibility. */
8484

generator/typesystem_core.xml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1322,24 +1322,24 @@
13221322
<!-- special handling for context handlers -->
13231323
<inject-code class="pywrap-operators">PythonQt::Type_EnterExit</inject-code>
13241324
<inject-code class="pywrap-h">
1325-
void __enter__(QMutexLocker* self) {}
1326-
void __exit__(QMutexLocker* self, PyObject* type, PyObject* value, PyObject* traceback) { self->unlock(); }
1325+
void __enter__(QMutexLocker* /*self*/) {}
1326+
void __exit__(QMutexLocker* self, PyObject* /*type*/, PyObject* /*value*/, PyObject* /*traceback*/) { self->unlock(); }
13271327
</inject-code>
13281328
</value-type>
13291329
<value-type name="QReadLocker">
13301330
<!-- special handling for context handlers -->
13311331
<inject-code class="pywrap-operators">PythonQt::Type_EnterExit</inject-code>
13321332
<inject-code class="pywrap-h">
1333-
void __enter__(QReadLocker* self) {}
1334-
void __exit__(QReadLocker* self, PyObject* type, PyObject* value, PyObject* traceback) { self->unlock(); }
1333+
void __enter__(QReadLocker* /*self*/) {}
1334+
void __exit__(QReadLocker* self, PyObject* /*type*/, PyObject* /*value*/, PyObject* /*traceback*/) { self->unlock(); }
13351335
</inject-code>
13361336
</value-type>
13371337
<value-type name="QWriteLocker">
13381338
<!-- special handling for context handlers -->
13391339
<inject-code class="pywrap-operators">PythonQt::Type_EnterExit</inject-code>
13401340
<inject-code class="pywrap-h">
1341-
void __enter__(QWriteLocker* self) {}
1342-
void __exit__(QWriteLocker* self, PyObject* type, PyObject* value, PyObject* traceback) { self->unlock(); }
1341+
void __enter__(QWriteLocker* /*self*/) {}
1342+
void __exit__(QWriteLocker* self, PyObject* /*type*/, PyObject* /*value*/, PyObject* /*traceback*/) { self->unlock(); }
13431343
</inject-code>
13441344
</value-type>
13451345
<object-type name="QSemaphore"/>

0 commit comments

Comments
 (0)