We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 864a6e4 commit 57de8e4Copy full SHA for 57de8e4
src/gui/src/pythonCmdInputWidget.cpp
@@ -30,6 +30,10 @@
30
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31
// POSSIBILITY OF SUCH DAMAGE.
32
33
+// Clang-tidy doesn't understand that Python.h is a super-header and you should
34
+// not include sub-headers.
35
+// NOLINTBEGIN(misc-include-cleaner)
36
+
37
// clang-format off
38
// Python.h must come first to avoid conflict with Qt
39
#define PY_SSIZE_T_CLEAN
@@ -350,3 +354,5 @@ void PythonCmdInputWidget::init()
350
354
}
351
355
352
356
} // namespace gui
357
358
+// NOLINTEND(misc-include-cleaner)
0 commit comments