sources/format.h

changeset 72
1b9c53e0c846
parent 70
0e947b487b18
child 73
07dda51a7a8e
--- 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

mercurial