From 4a1b59927f1a5ea692cee71df415ebb54f7a368d Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Tue, 16 Feb 2021 18:55:24 +0000 Subject: Rename types in LinkHistory --- game/vehicles/vehicle.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'game/vehicles/vehicle.h') diff --git a/game/vehicles/vehicle.h b/game/vehicles/vehicle.h index 15d401b..25ed5bb 100644 --- a/game/vehicles/vehicle.h +++ b/game/vehicles/vehicle.h @@ -11,14 +11,14 @@ class LinkHistory { public: - using Entry = std::pair; - using Return = std::pair; - Return add(const LinkWPtr &, unsigned char); - [[nodiscard]] Return getCurrent() const; - [[nodiscard]] Return getAt(float, float *) const; + using WEntry = std::pair; + using Entry = std::pair; + Entry add(const LinkWPtr &, unsigned char); + [[nodiscard]] Entry getCurrent() const; + [[nodiscard]] Entry getAt(float, float *) const; private: - std::vector links; + std::vector links; float totalLen {0.F}; }; -- cgit v1.2.3