aboutsummaryrefslogtreecommitdiffstats
path: root/src/fs/FileSystem.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2015-02-25 16:18:55 +0100
committerMax Kellermann <max@duempel.org>2015-02-25 19:17:45 +0100
commit4c899e9c5aec4d7fea56da95eed8784a41ea4b5b (patch)
treeccc8fe6df194a4a573bbdf32fb463f291e317f08 /src/fs/FileSystem.hxx
parent00b0f6ad51e4fe02d6e3955e6bc15f8ee1de6eb3 (diff)
downloadmpd-4c899e9c5aec4d7fea56da95eed8784a41ea4b5b.tar.gz
mpd-4c899e9c5aec4d7fea56da95eed8784a41ea4b5b.tar.xz
mpd-4c899e9c5aec4d7fea56da95eed8784a41ea4b5b.zip
fs/FileSystem: remove unused FOpenModes
Diffstat (limited to 'src/fs/FileSystem.hxx')
-rw-r--r--src/fs/FileSystem.hxx20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/fs/FileSystem.hxx b/src/fs/FileSystem.hxx
index fd88ba572..ab19b8b63 100644
--- a/src/fs/FileSystem.hxx
+++ b/src/fs/FileSystem.hxx
@@ -34,34 +34,14 @@ class AllocatedPath;
namespace FOpenMode {
/**
- * Open mode for reading text files.
- */
- constexpr PathTraitsFS::const_pointer ReadText = "r";
-
- /**
- * Open mode for reading binary files.
- */
- constexpr PathTraitsFS::const_pointer ReadBinary = "rb";
-
- /**
* Open mode for writing text files.
*/
constexpr PathTraitsFS::const_pointer WriteText = "w";
/**
- * Open mode for writing binary files.
- */
- constexpr PathTraitsFS::const_pointer WriteBinary = "wb";
-
- /**
* Open mode for appending text files.
*/
constexpr PathTraitsFS::const_pointer AppendText = "a";
-
- /**
- * Open mode for appending binary files.
- */
- constexpr PathTraitsFS::const_pointer AppendBinary = "ab";
}
/**