diff -r 4f7c2c944637 -r 1b9c53e0c846 sources/format.h --- 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 -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 -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 -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