summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPovilas Kanapickas <povilas@radix.lt>2020-12-19 22:21:32 +0200
committerPovilas Kanapickas <povilas@radix.lt>2020-12-19 22:21:32 +0200
commitaf7938f27625cc828eb6e4eefd0acb7ba9f6cc4f (patch)
treefa3a9119c4d2284c05ab954b507b447d43bd0dbc
parent3c80f19c2bdcb6eb2676704d73f2c71f377d5c54 (diff)
gtest: Remove extraneous semicolon from definition of XORG_TESTCASE
This makes it possible to use XORG_TESTCASE() as a statement. Currently all uses of XORG_TESTCASE() that end with a semicolon result in a "empty statement" warning.
-rw-r--r--gtest/include/xorg/gtest/xorg-gtest.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtest/include/xorg/gtest/xorg-gtest.h b/gtest/include/xorg/gtest/xorg-gtest.h
index 03786c8..e0b9d72 100644
--- a/gtest/include/xorg/gtest/xorg-gtest.h
+++ b/gtest/include/xorg/gtest/xorg-gtest.h
@@ -40,6 +40,6 @@
SCOPED_TRACE("\n::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::\n" \
"TESTCASE:\n" \
message \
- "\n::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::\n");
+ "\n::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::\n")
#endif