summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Schürmann <daschuer@mixxx.org>2023-06-05 21:52:31 +0200
committerGitHub <noreply@github.com>2023-06-05 21:52:31 +0200
commitc01fe261a93bbc29dc068200b98dbae396e16f42 (patch)
treee2fa8e252a9062f7e8f5d40f1cc98e207316fdcb
parent582a4092053d494560f181dcddcbedbb06f3b45e (diff)
Remove quotes from #error
Co-authored-by: Swiftb0y <12380386+Swiftb0y@users.noreply.github.com>
-rw-r--r--src/util/moc_included_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/moc_included_test.cpp b/src/util/moc_included_test.cpp
index f4c98e7c91..605693a25e 100644
--- a/src/util/moc_included_test.cpp
+++ b/src/util/moc_included_test.cpp
@@ -4,5 +4,5 @@
// It is empty in case all moc files are included, a requirement to speed up incremental builds.
// See https://cmake.org/cmake/help/latest/prop_tgt/AUTOMOC.html for details.
#ifdef QT_VERSION
-#error "mocs_compilation.cpp not empty. Move all #include "moc_<header_base>.cpp" lines from mocs_compilation.cpp to the cpp files of the related classes."
+#error mocs_compilation.cpp not empty. Move all #include "moc_<header_base>.cpp" lines from mocs_compilation.cpp to the cpp files of the related classes.
#endif