diff options
| author | 2018-10-26 16:21:45 +0200 | |
|---|---|---|
| committer | 2018-10-28 13:23:02 +0100 | |
| commit | 585b6a6a5037f9ef630a244ede18ac7854955fc6 (patch) | |
| tree | b075695e9eccd8324ef60558dd4dc1c7c62c2546 /src/common/telemetry.h | |
| parent | Merge pull request #1596 from FearlessTobi/port-4367 (diff) | |
| download | yuzu-585b6a6a5037f9ef630a244ede18ac7854955fc6.tar.gz yuzu-585b6a6a5037f9ef630a244ede18ac7854955fc6.tar.xz yuzu-585b6a6a5037f9ef630a244ede18ac7854955fc6.zip | |
compatdb: Use a seperate endpoint for testcase submission
Diffstat (limited to 'src/common/telemetry.h')
| -rw-r--r-- | src/common/telemetry.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/common/telemetry.h b/src/common/telemetry.h index 8d6ab986b..854a73fae 100644 --- a/src/common/telemetry.h +++ b/src/common/telemetry.h | |||
| @@ -153,6 +153,7 @@ struct VisitorInterface : NonCopyable { | |||
| 153 | 153 | ||
| 154 | /// Completion method, called once all fields have been visited | 154 | /// Completion method, called once all fields have been visited |
| 155 | virtual void Complete() = 0; | 155 | virtual void Complete() = 0; |
| 156 | virtual bool SubmitTestcase() = 0; | ||
| 156 | }; | 157 | }; |
| 157 | 158 | ||
| 158 | /** | 159 | /** |
| @@ -178,6 +179,9 @@ struct NullVisitor : public VisitorInterface { | |||
| 178 | void Visit(const Field<std::chrono::microseconds>& /*field*/) override {} | 179 | void Visit(const Field<std::chrono::microseconds>& /*field*/) override {} |
| 179 | 180 | ||
| 180 | void Complete() override {} | 181 | void Complete() override {} |
| 182 | bool SubmitTestcase() override { | ||
| 183 | return false; | ||
| 184 | } | ||
| 181 | }; | 185 | }; |
| 182 | 186 | ||
| 183 | /// Appends build-specific information to the given FieldCollection, | 187 | /// Appends build-specific information to the given FieldCollection, |