From 242c36391eeb5cbb2c38ee65475786110536e477 Mon Sep 17 00:00:00 2001
From: Jupp Tscheak <jupp.tscheak@daimler.com>
Date: Fri, 16 Jul 2021 10:19:30 +0200
Subject: [PATCH] Removed unit "ms" from member name.

Unit is given explicitly by type.

Signed-off-by: Jupp Tscheak <jupp.tscheak@daimler.com>
---
 MantleAPI/include/MantleAPI/Common/simulation_time.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/MantleAPI/include/MantleAPI/Common/simulation_time.h b/MantleAPI/include/MantleAPI/Common/simulation_time.h
index c437435e..5026b821 100644
--- a/MantleAPI/include/MantleAPI/Common/simulation_time.h
+++ b/MantleAPI/include/MantleAPI/Common/simulation_time.h
@@ -22,8 +22,8 @@ namespace mantle_api
 
 struct SimulationTime
 {
-    units::time::second_t current_sim_time_ms{0};
-    units::time::second_t last_delta_time_ms{0};
+    units::time::second_t current_sim_time{0};
+    units::time::second_t last_delta_time{0};
 };
 
 }  // namespace mantle_api
-- 
GitLab