summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2018-01-17 19:43:24 -0500
committerGravatar Lioncash2018-01-17 19:43:24 -0500
commit33eba9b96e3972a9cc9ad2373adc9a5fa7d92057 (patch)
treec0fa8ffed989805098c5aee8d063424aaeeeb490 /src
parentMerge pull request #73 from N00byKing/3093 (diff)
downloadyuzu-33eba9b96e3972a9cc9ad2373adc9a5fa7d92057.tar.gz
yuzu-33eba9b96e3972a9cc9ad2373adc9a5fa7d92057.tar.xz
yuzu-33eba9b96e3972a9cc9ad2373adc9a5fa7d92057.zip
telemetry: Silence initialization order warnings
Diffstat (limited to 'src')
-rw-r--r--src/common/telemetry.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/telemetry.h b/src/common/telemetry.h
index dd6bbd759..3694c76f2 100644
--- a/src/common/telemetry.h
+++ b/src/common/telemetry.h
@@ -53,10 +53,10 @@ template <typename T>
53class Field : public FieldInterface { 53class Field : public FieldInterface {
54public: 54public:
55 Field(FieldType type, std::string name, const T& value) 55 Field(FieldType type, std::string name, const T& value)
56 : type(type), name(std::move(name)), value(value) {} 56 : name(std::move(name)), type(type), value(value) {}
57 57
58 Field(FieldType type, std::string name, T&& value) 58 Field(FieldType type, std::string name, T&& value)
59 : type(type), name(std::move(name)), value(std::move(value)) {} 59 : name(std::move(name)), type(type), value(std::move(value)) {}
60 60
61 Field(const Field& other) : Field(other.type, other.name, other.value) {} 61 Field(const Field& other) : Field(other.type, other.name, other.value) {}
62 62