framelesshelper/include/FramelessHelper/Core/private
trbogdanov 31849d1c12
gcc and qt-5.12.0 compilation error fix (#171)
Compililation with gcc (any version) and Qt 5.12.0 (important) fails with error:
```
Core/private/sysapiloader_p.h:59:26: error: no matching function for call to ‘QMutex::QMutex()’
     static inline QMutex m_mutex;
                          ^~~~~~~
include/QtCore/qmutex.h:165:5: note: candidate: ‘QMutex::QMutex(const QMutex&)’ <deleted>
     Q_DISABLE_COPY(QMutex)
     ^~~~~~~~~~~~~~
```

`QMutex` in Qt 5.12.0 has explicit (!) one-parameter constructor with a
default value: `QMutex(QMutex::RecursionMode mode = NonRecursive)` and no
default constructor. In this case declaring static inline member without
initializer causes the above error.
2022-10-26 17:13:53 +08:00
..
chromepalette_p.h Add WindowBorderPainter and WindowBorder 2022-10-10 13:35:37 +08:00
framelessconfig_p.h Add WindowBorderPainter and WindowBorder 2022-10-10 13:35:37 +08:00
framelessmanager_p.h move static_assert to cpp source files 2022-10-13 09:44:50 +08:00
micamaterial_p.h fix various issues 2022-10-12 14:08:58 +08:00
registrykey_p.h Add WindowBorderPainter and WindowBorder 2022-10-10 13:35:37 +08:00
sysapiloader_p.h gcc and qt-5.12.0 compilation error fix (#171) 2022-10-26 17:13:53 +08:00
windowborderpainter_p.h Add WindowBorderPainter and WindowBorder 2022-10-10 13:35:37 +08:00
winverhelper_p.h win: add new win10 subver 2022-10-19 17:15:23 +08:00