diff options
| author | 2020-08-22 19:23:22 -0400 | |
|---|---|---|
| committer | 2020-08-22 19:29:54 -0400 | |
| commit | ca5ed50655b744ae4d3242b2105676a43d1482e0 (patch) | |
| tree | ac342b98c89c4a15d536e8e1e98ea9f753154e32 /src/web_service/verify_login.cpp | |
| parent | Merge pull request #4546 from lioncash/telemetry (diff) | |
| download | yuzu-ca5ed50655b744ae4d3242b2105676a43d1482e0.tar.gz yuzu-ca5ed50655b744ae4d3242b2105676a43d1482e0.tar.xz yuzu-ca5ed50655b744ae4d3242b2105676a43d1482e0.zip | |
web_service: Move web_result.h into web_service
This is the only place it's actively used. It's also more appropriate
for web-related structures to be within the web service target.
Especially given this one doesn't rely on anything in the common
library.
Diffstat (limited to 'src/web_service/verify_login.cpp')
| -rw-r--r-- | src/web_service/verify_login.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web_service/verify_login.cpp b/src/web_service/verify_login.cpp index bfaa5b70a..ceb55ca6b 100644 --- a/src/web_service/verify_login.cpp +++ b/src/web_service/verify_login.cpp | |||
| @@ -3,9 +3,9 @@ | |||
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <nlohmann/json.hpp> | 5 | #include <nlohmann/json.hpp> |
| 6 | #include "common/web_result.h" | ||
| 7 | #include "web_service/verify_login.h" | 6 | #include "web_service/verify_login.h" |
| 8 | #include "web_service/web_backend.h" | 7 | #include "web_service/web_backend.h" |
| 8 | #include "web_service/web_result.h" | ||
| 9 | 9 | ||
| 10 | namespace WebService { | 10 | namespace WebService { |
| 11 | 11 | ||