From e6f4bf35619802e3da22bbd032a0afbbb1704231 Mon Sep 17 00:00:00 2001 From: Martchus Date: Sat, 31 Oct 2020 20:31:04 +0100 Subject: [PATCH] Apply clang-format --- chrono/timespan.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrono/timespan.h b/chrono/timespan.h index 7bb4874..9e4b1b7 100644 --- a/chrono/timespan.h +++ b/chrono/timespan.h @@ -66,7 +66,7 @@ public: constexpr TimeSpan operator-(const TimeSpan &other) const; constexpr TimeSpan operator*(double factor) const; constexpr TimeSpan operator/(double factor) const; - constexpr double operator /(TimeSpan other) const; + constexpr double operator/(TimeSpan other) const; TimeSpan &operator+=(const TimeSpan &other); TimeSpan &operator-=(const TimeSpan &other); TimeSpan &operator*=(double factor);