From 7ee86f0a3fee1f93fef8f411d31f53548bf5e25b Mon Sep 17 00:00:00 2001 From: Marcos Bento Date: Thu, 19 Oct 2023 16:03:38 +0100 Subject: [PATCH] ecflow_server: remove unnecessary namespace qualified name Re ECFLOW-1900 --- ACore/src/Chrono.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ACore/src/Chrono.hpp b/ACore/src/Chrono.hpp index ed1d391a1..b3a375d79 100644 --- a/ACore/src/Chrono.hpp +++ b/ACore/src/Chrono.hpp @@ -42,8 +42,8 @@ class Instant { friend Instant operator-(const Instant& rhs, const Duration& lhs); friend Duration operator-(const Instant& rhs, const Instant& lhs); - friend Instant ecf::coerce_to_instant(long value); - friend long ecf::coerce_from_instant(const Instant& value); + friend Instant coerce_to_instant(long value); + friend long coerce_from_instant(const Instant& value); private: instant_t instant_;