From b72fa182b4f08d0787ccdb62864cf4ae8a641205 Mon Sep 17 00:00:00 2001 From: Edward Welbourne Date: Thu, 29 Jul 2021 18:50:15 +0200 Subject: Correct a #include in a comment in qglobal.h The comment indicates how to use QT_BUILD_REMOVED_API, which includes a #include of qglobal.h; but we have a tool, run somewhere in configure, that grumbles about this #include (unaware, I suspect, that it's in a comment), saying we should #include ; so change the comment to say that. Presumably this is our recommended way to do includes, so we should follow it when suggesting how to write code. This amends commit 0c8b98774cd0f3dad939d31e820e7e47c1da088a. Change-Id: I4683ad6f1c0eedec3eaa02ac40c5d017059a49b0 Reviewed-by: Thiago Macieira --- src/corelib/global/qglobal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/corelib/global') diff --git a/src/corelib/global/qglobal.h b/src/corelib/global/qglobal.h index 8bc7181633..e2dc919e26 100644 --- a/src/corelib/global/qglobal.h +++ b/src/corelib/global/qglobal.h @@ -459,7 +459,7 @@ typedef double qreal; // removed_api/some.cpp #define QT_BUILD_REMOVED_API - #include + #include #include -- cgit v1.2.3