From 4b00aaae9cbf30b4182281e9bb5299a009ff8f83 Mon Sep 17 00:00:00 2001 From: Amir Masoud Abdol Date: Thu, 13 Apr 2023 12:18:12 +0200 Subject: [PATCH] Add the missing include guard Pick-to: 6.5 Task-number: QTBUG-109394 Change-Id: I6a46784fa65aecd48a7f59021c4942ed52321742 Reviewed-by: Alexandru Croitor Reviewed-by: Alexey Edelev --- src/plugins/platforms/wasm/qwasmopenglcontext.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/plugins/platforms/wasm/qwasmopenglcontext.h b/src/plugins/platforms/wasm/qwasmopenglcontext.h index 90863abdfe..022d669215 100644 --- a/src/plugins/platforms/wasm/qwasmopenglcontext.h +++ b/src/plugins/platforms/wasm/qwasmopenglcontext.h @@ -1,6 +1,9 @@ // Copyright (C) 2018 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only +#ifndef QWASMOPENGLCONTEXT_H +#define QWASMOPENGLCONTEXT_H + #include #include @@ -48,3 +51,4 @@ private: QT_END_NAMESPACE +#endif // QWASMOPENGLCONTEXT_H