--- a/sources/format.h Fri May 15 18:36:22 2015 +0300 +++ b/sources/format.h Fri May 15 20:03:35 2015 +0300 @@ -203,33 +203,3 @@ fclose (handle); } } - -// ------------------------------------------------------------------------------------------------- -// -// Prints the formatting result to the console -// -template<typename... argtypes> -void print (const String& fmtstr, const argtypes&... args) -{ - print_to_console (format (fmtstr, args...)); -} - -// ------------------------------------------------------------------------------------------------- -// -// Prints the formatting result as a warning to the console -// -template<typename... argtypes> -void print_warning (const String& fmtstr, const argtypes&... args) -{ - print_to_console (TEXTCOLOR_BrightYellow "-!- " + format (fmtstr, args...) + TEXTCOLOR_Reset); -} - -// ------------------------------------------------------------------------------------------------- -// -// Prints the formatting result as a warning to the console -// -template<typename... argtypes> -void print_error (const String& fmtstr, const argtypes&... args) -{ - print_to_console (TEXTCOLOR_BrightRed "!!! " + format (fmtstr, args...) + TEXTCOLOR_Reset); -} \ No newline at end of file