diff options
| author | 2018-10-31 22:37:07 -0400 | |
|---|---|---|
| committer | 2018-10-31 22:37:07 -0400 | |
| commit | d08457f8796a9287b59e77c6f06c620d6f07d4d4 (patch) | |
| tree | 5f19e368bd827be7ee68f2901a39a5462a06692f /src/common | |
| parent | Merge pull request #1528 from FernandoS27/assert-control-codes (diff) | |
| parent | compatdb: Use a seperate endpoint for testcase submission (diff) | |
| download | yuzu-d08457f8796a9287b59e77c6f06c620d6f07d4d4.tar.gz yuzu-d08457f8796a9287b59e77c6f06c620d6f07d4d4.tar.xz yuzu-d08457f8796a9287b59e77c6f06c620d6f07d4d4.zip | |
Merge pull request #1604 from FearlessTobi/port-4369
Port citra-emu/citra#4369: "compatdb: Use a seperate endpoint for testcase submission"
Diffstat (limited to '')
| -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, |