From fbf00b07fa0b5b35b84f24fe07f1367cba21934c Mon Sep 17 00:00:00 2001 From: Pyry Haulos Date: Fri, 2 Oct 2015 11:52:26 -0700 Subject: [PATCH] Make vkt::TestInstance assignment and copy ctor private Change-Id: I629f51972302a46fcba51eac87a69d32313bf05a --- external/vulkancts/modules/vulkan/vktTestCase.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/external/vulkancts/modules/vulkan/vktTestCase.hpp b/external/vulkancts/modules/vulkan/vktTestCase.hpp index fbd9105..e9b5659 100644 --- a/external/vulkancts/modules/vulkan/vktTestCase.hpp +++ b/external/vulkancts/modules/vulkan/vktTestCase.hpp @@ -120,6 +120,10 @@ public: protected: Context& m_context; + +private: + TestInstance (const TestInstance&); + TestInstance& operator= (const TestInstance&); }; inline TestCase::TestCase (tcu::TestContext& testCtx, const std::string& name, const std::string& description) -- 2.7.4