diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-03-23 11:17:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-23 11:17:24 +0100 |
commit | cbbe0743a9155f06d03d4b906209933192a02731 (patch) | |
tree | b3b78749b4a182c9e1779c8bcad5c06d487b9e6e /platform/x11 | |
parent | ed9a0d0484411e631b0cc927e46dc234054d5ae5 (diff) | |
parent | 2ecf928ae39253f8cc72de1ad1391e8ed140ed6d (diff) |
Merge pull request #37219 from RajatGoswami/missing-include-guards
Adding missing include guards to header files identified by LGTM
Diffstat (limited to 'platform/x11')
-rw-r--r-- | platform/x11/export/export.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/platform/x11/export/export.h b/platform/x11/export/export.h index d94ea114a8..4049e6a8bf 100644 --- a/platform/x11/export/export.h +++ b/platform/x11/export/export.h @@ -28,4 +28,9 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ +#ifndef X11_EXPORT_H +#define X11_EXPORT_H + void register_x11_exporter(); + +#endif // X11_EXPORT_H |