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 b3a1d84 commit b1ca5e0Copy full SHA for b1ca5e0
src/fs.cpp
@@ -12,9 +12,5 @@ FILE *fopen(const fs::path& p, const char *mode)
12
return ::fopen(p.string().c_str(), mode);
13
}
14
15
-FILE *freopen(const fs::path& p, const char *mode, FILE *stream)
16
-{
17
- return ::freopen(p.string().c_str(), mode, stream);
18
-}
19
20
} // fsbridge
src/fs.h
@@ -19,7 +19,6 @@ namespace fs = boost::filesystem;
/** Bridge operations to C stdio */
namespace fsbridge {
21
FILE *fopen(const fs::path& p, const char *mode);
22
- FILE *freopen(const fs::path& p, const char *mode, FILE *stream);
23
};
24
25
#endif
0 commit comments