summaryrefslogtreecommitdiffstats
path: root/src/common
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-08-23 23:54:43 +0200
committerGitHub <noreply@github.com>2020-08-23 23:54:43 +0200
commit9619964e8c35f5b357230da96301dcc5a59bf4da (patch)
treefb3f33dd0e57fc6cb29af2df13c5e1c88953b0bd /src/common
parentMerge pull request #4560 from lioncash/convert (diff)
parentweb_service: Move web_result.h into web_service (diff)
downloadyuzu-9619964e8c35f5b357230da96301dcc5a59bf4da.tar
yuzu-9619964e8c35f5b357230da96301dcc5a59bf4da.tar.gz
yuzu-9619964e8c35f5b357230da96301dcc5a59bf4da.tar.bz2
yuzu-9619964e8c35f5b357230da96301dcc5a59bf4da.tar.lz
yuzu-9619964e8c35f5b357230da96301dcc5a59bf4da.tar.xz
yuzu-9619964e8c35f5b357230da96301dcc5a59bf4da.tar.zst
yuzu-9619964e8c35f5b357230da96301dcc5a59bf4da.zip
Diffstat (limited to '')
-rw-r--r--src/common/CMakeLists.txt1
-rw-r--r--src/web_service/web_result.h (renamed from src/common/web_result.h)4
2 files changed, 2 insertions, 3 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt
index 78c3bfb3b..5d54516eb 100644
--- a/src/common/CMakeLists.txt
+++ b/src/common/CMakeLists.txt
@@ -172,7 +172,6 @@ add_library(common STATIC
virtual_buffer.h
wall_clock.cpp
wall_clock.h
- web_result.h
zstd_compression.cpp
zstd_compression.h
)
diff --git a/src/common/web_result.h b/src/web_service/web_result.h
index 8bfa2141d..3aeeb5288 100644
--- a/src/common/web_result.h
+++ b/src/web_service/web_result.h
@@ -7,7 +7,7 @@
#include <string>
#include "common/common_types.h"
-namespace Common {
+namespace WebService {
struct WebResult {
enum class Code : u32 {
Success,
@@ -22,4 +22,4 @@ struct WebResult {
std::string result_string;
std::string returned_data;
};
-} // namespace Common
+} // namespace WebService