From 748f38c991e867e886e9f53529e868c5f7b3882f Mon Sep 17 00:00:00 2001 From: Sebastian Messmer Date: Tue, 25 Nov 2014 14:30:11 +0100 Subject: [PATCH] Changed TODO --- src/fspp/impl/Filesystem.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fspp/impl/Filesystem.h b/src/fspp/impl/Filesystem.h index 5ff42e91..f364083e 100644 --- a/src/fspp/impl/Filesystem.h +++ b/src/fspp/impl/Filesystem.h @@ -16,8 +16,8 @@ public: virtual void flush(int descriptor) = 0; virtual void closeFile(int descriptor) = 0; virtual void lstat(const boost::filesystem::path &path, struct ::stat *stbuf) = 0; - //TODO Unit-Tests for all functions below virtual void fstat(int descriptor, struct ::stat *stbuf) = 0; + //TODO Unit-Tests for all functions below virtual void truncate(const boost::filesystem::path &path, off_t size) = 0; virtual void ftruncate(int descriptor, off_t size) = 0; virtual int read(int descriptor, void *buf, size_t count, off_t offset) = 0;