From b94a338e56475943eb9bcc79be60ed6afd586796 Mon Sep 17 00:00:00 2001 From: Vikram Rajkumar Date: Thu, 1 Jun 2017 16:49:10 -0500 Subject: [PATCH] Add missing include https://github.com/EOSIO/eos/commit/4643586411a08e5e53851d9f41785b63dc975217 --- src/log/console_appender.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/log/console_appender.cpp b/src/log/console_appender.cpp index c012743..9c55ff0 100644 --- a/src/log/console_appender.cpp +++ b/src/log/console_appender.cpp @@ -14,6 +14,7 @@ #include #include #include +#include namespace fc { @@ -27,7 +28,7 @@ namespace fc { #endif }; - console_appender::console_appender( const variant& args ) + console_appender::console_appender( const variant& args ) :my(new impl) { configure( args.as() ); @@ -66,7 +67,7 @@ namespace fc { #ifdef WIN32 static WORD #else - static const char* + static const char* #endif get_console_color(console_appender::color::type t ) { switch( t ) { @@ -140,7 +141,7 @@ namespace fc { #endif if( text.size() ) - fprintf( out, "%s", text.c_str() ); //fmt_str.c_str() ); + fprintf( out, "%s", text.c_str() ); //fmt_str.c_str() ); #ifdef WIN32 if (my->console_handle != INVALID_HANDLE_VALUE)