aboutsummaryrefslogtreecommitdiffstats
path: root/src/storage/MemoryDirectoryReader.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2015-02-28 20:50:15 +0100
committerMax Kellermann <max@duempel.org>2015-02-28 23:00:26 +0100
commit2d06a8e8804b1db64c7564532362eecdf7ad81d3 (patch)
tree3083cbd252fa36f0dd31269b7a3be84b5acb4d1e /src/storage/MemoryDirectoryReader.hxx
parente1a434edbc84528fcd85e337ebf713c75124ba2b (diff)
downloadmpd-2d06a8e8804b1db64c7564532362eecdf7ad81d3.tar.gz
mpd-2d06a8e8804b1db64c7564532362eecdf7ad81d3.tar.xz
mpd-2d06a8e8804b1db64c7564532362eecdf7ad81d3.zip
storage/FileInfo: rename to StorageFileInfo
Diffstat (limited to 'src/storage/MemoryDirectoryReader.hxx')
-rw-r--r--src/storage/MemoryDirectoryReader.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/storage/MemoryDirectoryReader.hxx b/src/storage/MemoryDirectoryReader.hxx
index a4d2c1f92..69299d1d4 100644
--- a/src/storage/MemoryDirectoryReader.hxx
+++ b/src/storage/MemoryDirectoryReader.hxx
@@ -36,7 +36,7 @@ public:
struct Entry {
std::string name;
- FileInfo info;
+ StorageFileInfo info;
template<typename N>
explicit Entry(N &&_name):name(std::forward<N>(_name)) {}
@@ -61,7 +61,8 @@ public:
/* virtual methods from class StorageDirectoryReader */
const char *Read() override;
- bool GetInfo(bool follow, FileInfo &info, Error &error) override;
+ bool GetInfo(bool follow, StorageFileInfo &info,
+ Error &error) override;
};
#endif