summaryrefslogtreecommitdiff
path: root/gtest/include/xorg/gtest/xorg-gtest-test.h
diff options
context:
space:
mode:
Diffstat (limited to 'gtest/include/xorg/gtest/xorg-gtest-test.h')
-rw-r--r--gtest/include/xorg/gtest/xorg-gtest-test.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtest/include/xorg/gtest/xorg-gtest-test.h b/gtest/include/xorg/gtest/xorg-gtest-test.h
index eb8834d..1acc252 100644
--- a/gtest/include/xorg/gtest/xorg-gtest-test.h
+++ b/gtest/include/xorg/gtest/xorg-gtest-test.h
@@ -54,7 +54,7 @@ class Test : public ::testing::Test {
Test();
- virtual ~Test();
+ ~Test() override;
protected:
/**
@@ -68,7 +68,7 @@ class Test : public ::testing::Test {
*
* @throws std::runtime_error if no X server is running.
*/
- virtual void SetUp();
+ void SetUp() override;
/**
* Closes the display.
@@ -78,7 +78,7 @@ class Test : public ::testing::Test {
*
* @post Subsequent calls to Display() return NULL.
*/
- virtual void TearDown();
+ void TearDown() override;
/**
* Accesses the display representing an Xlib connection.