diff options
author | Max Kellermann <max@musicpd.org> | 2021-02-17 14:39:19 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2021-02-17 14:39:20 +0100 |
commit | 8d90b831e19d968d19f889481249b924753fda2a (patch) | |
tree | 92b915babacad77a28a3400e7e28f2a734340cb5 | |
parent | d4710604c402a1bebfdefe507efc630400c7fa26 (diff) |
output/snapcast/Timestamp: drop `static`
-rw-r--r-- | src/output/plugins/snapcast/Timestamp.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output/plugins/snapcast/Timestamp.hxx b/src/output/plugins/snapcast/Timestamp.hxx index 148af8888..b7c0494a1 100644 --- a/src/output/plugins/snapcast/Timestamp.hxx +++ b/src/output/plugins/snapcast/Timestamp.hxx @@ -25,7 +25,7 @@ #include <chrono> template<typename TimePoint> -static constexpr SnapcastTimestamp +constexpr SnapcastTimestamp ToSnapcastTimestamp(TimePoint t) noexcept { using Clock = typename TimePoint::clock; |