Commit 4c899e9c authored by Max Kellermann's avatar Max Kellermann

fs/FileSystem: remove unused FOpenModes

parent 00b0f6ad
......@@ -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";
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment