aboutsummaryrefslogtreecommitdiffstats
path: root/include/clientprotocol.h
diff options
context:
space:
mode:
authorGravatar Sadie Powell2026-03-26 22:24:16 +0000
committerGravatar Sadie Powell2026-03-26 22:24:16 +0000
commitcd2d667ca7d3d31dbcf1f3bf0717b744b11ec776 (patch)
tree2d510e98b89d9fb7a74b7ed44dede89ef5d3b50e /include/clientprotocol.h
parentMerge branch 'insp4' into master. (diff)
Switch typedefs to using statements.
Diffstat (limited to 'include/clientprotocol.h')
-rw-r--r--include/clientprotocol.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clientprotocol.h b/include/clientprotocol.h
index 7be110f07..7c2ed6365 100644
--- a/include/clientprotocol.h
+++ b/include/clientprotocol.h
@@ -290,7 +290,7 @@ public:
bool IsOwned() const { return owned; }
};
- typedef std::vector<Param> ParamList;
+ using ParamList = std::vector<Param>;
/** Escapes a value to the tag format.
* @param value The value to escape.
@@ -303,7 +303,7 @@ public:
static std::string UnescapeTag(const std::string& value);
private:
- typedef std::vector<std::pair<SerializedInfo, SerializedMessage>> SerializedList;
+ using SerializedList = std::vector<std::pair<SerializedInfo, SerializedMessage>>;
ParamList params;
TagMap tags;