mirror of
https://github.com/dashpay/dash.git
synced 2024-12-28 05:23:01 +01:00
1099c1ad60
49de096
Remove unused Boost includes (practicalswift)
Tree-SHA512: ff2dad94f9eeb1dc50fcffd0e94e1686be04e4e5bc45f58ae955d630c15cd25bb8f5583d0aa1f2f263b5a723be79747ef3c6e6b417c7be7787c0abc8d1874019
16 lines
279 B
C++
16 lines
279 B
C++
#include "fs.h"
|
|
|
|
namespace fsbridge {
|
|
|
|
FILE *fopen(const fs::path& p, const char *mode)
|
|
{
|
|
return ::fopen(p.string().c_str(), mode);
|
|
}
|
|
|
|
FILE *freopen(const fs::path& p, const char *mode, FILE *stream)
|
|
{
|
|
return ::freopen(p.string().c_str(), mode, stream);
|
|
}
|
|
|
|
} // fsbridge
|