From 4c899e9c5aec4d7fea56da95eed8784a41ea4b5b Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 25 Feb 2015 16:18:55 +0100 Subject: fs/FileSystem: remove unused FOpenModes --- src/fs/FileSystem.hxx | 20 -------------------- 1 file changed, 20 deletions(-) (limited to 'src/fs/FileSystem.hxx') 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 @@ -33,35 +33,15 @@ 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"; } /** -- cgit v1.2.3