From e64cec22ebcbfd518e0419c8a718f52734387503 Mon Sep 17 00:00:00 2001 From: cxl Date: Tue, 25 Oct 2011 06:20:03 +0000 Subject: [PATCH] *Core: RegisterFormatter declaration fix git-svn-id: svn://ultimatepp.org/upp/trunk@4102 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/Core/Format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uppsrc/Core/Format.h b/uppsrc/Core/Format.h index 85371fd27..c11cefef6 100644 --- a/uppsrc/Core/Format.h +++ b/uppsrc/Core/Format.h @@ -71,7 +71,7 @@ struct Formatting typedef String (*Formatter)(const Formatting& fmt); -void RegisterFormatter(int type, const char *id, Formatter f, bool ascii) init_; +void RegisterFormatter(int type, const char *id, Formatter f) init_; void RegisterNullFormatter(const char *id, Formatter f) init_; void RegisterNumberFormatter(const char *id, Formatter f) init_; void RegisterStringFormatter(const char *id, Formatter f) init_;