summaryrefslogtreecommitdiff
path: root/src/tag
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2019-05-08 15:47:58 +0200
committerMax Kellermann <max@musicpd.org>2019-12-16 23:02:14 +0100
commite9af692973a5db95ac1b07f430fd801c0c07dac9 (patch)
tree6c0a70be8aaddc7993738cd346b38201a101c99c /src/tag
parent0cf90ee8b668ddadb7206de397070904c9437b8a (diff)
util/Time*: move to time/
Diffstat (limited to 'src/tag')
-rw-r--r--src/tag/Format.cxx2
-rw-r--r--src/tag/meson.build1
2 files changed, 2 insertions, 1 deletions
diff --git a/src/tag/Format.cxx b/src/tag/Format.cxx
index a86e4643e..01fdba995 100644
--- a/src/tag/Format.cxx
+++ b/src/tag/Format.cxx
@@ -20,9 +20,9 @@
#include "Format.hxx"
#include "Tag.hxx"
#include "ParseName.hxx"
+#include "time/Convert.hxx"
#include "util/format.h"
#include "util/TruncateString.hxx"
-#include "util/TimeConvert.hxx"
#include <algorithm>
diff --git a/src/tag/meson.build b/src/tag/meson.build
index 08b9e5e92..13ca102d5 100644
--- a/src/tag/meson.build
+++ b/src/tag/meson.build
@@ -48,6 +48,7 @@ tag = static_library(
tag_dep = declare_dependency(
link_with: tag,
dependencies: [
+ time_dep,
util_dep,
],
)