mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-24 07:08:38 -05:00
775c369420
Fixes: #19772
12 lines
121 B
C++
12 lines
121 B
C++
#ifndef SKIP_LINTING_H
|
|
#define SKIP_LINTING_H
|
|
|
|
#include <QObject>
|
|
|
|
class SkipMe : public QObject
|
|
{
|
|
Q_OBJECT
|
|
};
|
|
|
|
#endif
|