Skip to content

Commit

Permalink
ecflow_server: remove unnecessary namespace qualified name
Browse files Browse the repository at this point in the history
Re ECFLOW-1900
  • Loading branch information
marcosbento committed Oct 19, 2023
1 parent e3f1964 commit 7ee86f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ACore/src/Chrono.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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_;
Expand Down

0 comments on commit 7ee86f0

Please sign in to comment.