From 14d3da0e1822c315c1b7af0c013a9db4fa402ead Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 15 Aug 2016 22:21:34 +0200 Subject: [PATCH] fs/FileSystem: remove unused FOpenModes --- src/fs/FileSystem.hxx | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/fs/FileSystem.hxx b/src/fs/FileSystem.hxx index b6c4d59e3..76f8bc40a 100644 --- a/src/fs/FileSystem.hxx +++ b/src/fs/FileSystem.hxx @@ -37,18 +37,6 @@ class AllocatedPath; -namespace FOpenMode { - /** - * Open mode for writing text files. - */ - constexpr PathTraitsFS::const_pointer_type WriteText = PATH_LITERAL("w"); - - /** - * Open mode for appending text files. - */ - constexpr PathTraitsFS::const_pointer_type AppendText = PATH_LITERAL("a"); -} - /** * Wrapper for fopen() that uses #Path names. */