From 486706269cbd6fe2022c8fbab7dd6b48498cca57 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Tue, 5 Apr 2016 11:08:12 +1000 Subject: [PATCH] debug: fully qualify std types --- debug_win32.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debug_win32.cpp b/debug_win32.cpp index c0d84e0e..7afbd6a9 100644 --- a/debug_win32.cpp +++ b/debug_win32.cpp @@ -106,7 +106,7 @@ force_console (void) setvbuf (stderr, NULL, _IONBF, 0); setvbuf (stdin, NULL, _IONBF, 0); - ios::sync_with_stdio (); + std::ios::sync_with_stdio (); // Windows doesn't give an immediate newline when an application is run // from a console, so we provide one here for sanity.