diff options
author | Max Kellermann <max@duempel.org> | 2015-02-25 16:18:55 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-02-25 19:17:45 +0100 |
commit | 4c899e9c5aec4d7fea56da95eed8784a41ea4b5b (patch) | |
tree | ccc8fe6df194a4a573bbdf32fb463f291e317f08 /src/fs | |
parent | 00b0f6ad51e4fe02d6e3955e6bc15f8ee1de6eb3 (diff) |
fs/FileSystem: remove unused FOpenModes
Diffstat (limited to 'src/fs')
-rw-r--r-- | src/fs/FileSystem.hxx | 20 |
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"; } /** |