We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cceedbc commit 75ea00fCopy full SHA for 75ea00f
src/fs.cpp
@@ -14,11 +14,6 @@ FILE *fopen(const fs::path& p, const char *mode)
14
return ::fopen(p.string().c_str(), mode);
15
}
16
17
-FILE *freopen(const fs::path& p, const char *mode, FILE *stream)
18
-{
19
- return ::freopen(p.string().c_str(), mode, stream);
20
-}
21
-
22
#ifndef WIN32
23
24
static std::string GetErrorReason() {
src/fs.h
@@ -18,7 +18,6 @@ namespace fs = boost::filesystem;
/** Bridge operations to C stdio */
namespace fsbridge {
FILE *fopen(const fs::path& p, const char *mode);
- FILE *freopen(const fs::path& p, const char *mode, FILE *stream);
class FileLock
{
0 commit comments