aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/autotest/gtest/gtestparser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/autotest/gtest/gtestparser.h')
-rw-r--r--src/plugins/autotest/gtest/gtestparser.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/autotest/gtest/gtestparser.h b/src/plugins/autotest/gtest/gtestparser.h
index 67e2e074d4..781c9fe902 100644
--- a/src/plugins/autotest/gtest/gtestparser.h
+++ b/src/plugins/autotest/gtest/gtestparser.h
@@ -33,7 +33,7 @@ namespace Internal {
class GTestParseResult : public TestParseResult
{
public:
- explicit GTestParseResult(const Core::Id &id) : TestParseResult(id) {}
+ explicit GTestParseResult(ITestFramework *framework) : TestParseResult(framework) {}
TestTreeItem *createTestTreeItem() const override;
bool parameterized = false;
bool typed = false;
@@ -43,6 +43,7 @@ public:
class GTestParser : public CppParser
{
public:
+ explicit GTestParser(ITestFramework *framework) : CppParser(framework) {}
bool processDocument(QFutureInterface<TestParseResultPtr> futureInterface,
const QString &fileName) override;
};