From cd2d667ca7d3d31dbcf1f3bf0717b744b11ec776 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Thu, 26 Mar 2026 22:24:16 +0000 Subject: Switch typedefs to using statements. --- include/streamsocket.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/streamsocket.h') diff --git a/include/streamsocket.h b/include/streamsocket.h index 216c1c816..60f21e97e 100644 --- a/include/streamsocket.h +++ b/include/streamsocket.h @@ -123,15 +123,15 @@ public: public: /** One element of the queue, a continuous buffer */ - typedef std::string Element; + using Element = std::string; /** Sequence container of buffers in the queue */ - typedef std::deque Container; + using Container = std::deque; /** Container iterator */ - typedef Container::const_iterator const_iterator; + using const_iterator = Container::const_iterator; /** Return whether the queue is empty * @return True if the queue is empty, false otherwise -- cgit v1.3.1-10-gc9f91