From 450ad45882f2f1e9009cab38be544b2b432aef17 Mon Sep 17 00:00:00 2001 From: ehofman Date: Thu, 10 Nov 2005 09:57:58 +0000 Subject: [PATCH] MSVC fix. --- simgear/debug/logstream.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simgear/debug/logstream.hxx b/simgear/debug/logstream.hxx index 4546a5e1..7fee8140 100644 --- a/simgear/debug/logstream.hxx +++ b/simgear/debug/logstream.hxx @@ -185,7 +185,7 @@ inline logbuf::int_type logbuf::overflow( int c ) { #ifdef _MSC_VER - static has_console = false; + static bool has_console = false; if ( logging_enabled ) { if ( !has_console ) { AllocConsole(); -- 2.39.5