mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Add a namespace to OpenFStream
For consistency with the other functions in FileUtil.h.
This commit is contained in:
@ -321,7 +321,7 @@ void CCodeWindow::OnSymbolsMenu(wxCommandEvent& event)
|
||||
if (!path.IsEmpty())
|
||||
{
|
||||
std::ifstream f;
|
||||
OpenFStream(f, WxStrToStr(path), std::ios_base::in);
|
||||
File::OpenFStream(f, WxStrToStr(path), std::ios_base::in);
|
||||
|
||||
std::string line;
|
||||
while (std::getline(f, line))
|
||||
|
Reference in New Issue
Block a user