netlist: Fix a compile issues with mingw.

This commit is contained in:
couriersud 2020-09-05 23:48:24 +02:00
parent f3eb632465
commit 52b1750a7f

View File

@ -372,10 +372,12 @@ public:
{
}
#if 0
explicit ifstream(const std::string name, ios_base::openmode mode = ios_base::in)
: std::ifstream(filename_type(name).c_str(), mode)
{
}
#endif
};
///
@ -393,10 +395,12 @@ public:
{
}
#if 0
explicit ofstream(const std::string name, ios_base::openmode mode = ios_base::out | ios_base::trunc)
: std::ofstream(filename_type(name).c_str(), mode)
{
}
#endif
};