File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -927,7 +927,7 @@ class basic_filebuf : public std::basic_filebuf<charT, traits>
927
927
const basic_filebuf& operator =(const basic_filebuf&) = delete ;
928
928
basic_filebuf<charT, traits>* open (const path& p, std::ios_base::openmode mode)
929
929
{
930
- #if defined(GHC_OS_WINDOWS) && && !defined(__GNUC__)
930
+ #if defined(GHC_OS_WINDOWS) && !defined(__GNUC__)
931
931
return std::basic_filebuf<charT, traits>::open (p.wstring ().c_str (), mode) ? this : 0 ;
932
932
#else
933
933
return std::basic_filebuf<charT, traits>::open (p.c_str (), mode) ? this : 0 ;
@@ -940,7 +940,7 @@ class basic_ifstream : public std::basic_ifstream<charT, traits>
940
940
{
941
941
public:
942
942
basic_ifstream () {}
943
- #if defined(GHC_OS_WINDOWS) && && !defined(__GNUC__)
943
+ #if defined(GHC_OS_WINDOWS) && !defined(__GNUC__)
944
944
explicit basic_ifstream (const path& p, std::ios_base::openmode mode = std::ios_base::in)
945
945
: std::basic_ifstream<charT, traits>(p.wstring().c_str(), mode)
946
946
{
You can’t perform that action at this time.
0 commit comments