mirror of
https://github.com/holub/mame
synced 2025-07-05 18:08:04 +03:00
netlist: Fix a compile issues with mingw.
This commit is contained in:
parent
f3eb632465
commit
52b1750a7f
@ -372,10 +372,12 @@ public:
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if 0
|
||||||
explicit ifstream(const std::string name, ios_base::openmode mode = ios_base::in)
|
explicit ifstream(const std::string name, ios_base::openmode mode = ios_base::in)
|
||||||
: std::ifstream(filename_type(name).c_str(), mode)
|
: 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)
|
explicit ofstream(const std::string name, ios_base::openmode mode = ios_base::out | ios_base::trunc)
|
||||||
: std::ofstream(filename_type(name).c_str(), mode)
|
: std::ofstream(filename_type(name).c_str(), mode)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user