From 3a965c87750250c8facc9dbff02aeb3a88e19f05 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sat, 28 May 2011 10:52:49 +0300 Subject: [PATCH] Rename formatter.* to format.* --- source/core/variant.cpp | 2 +- source/strings/{formatter.cpp => format.cpp} | 2 +- source/strings/{formatter.h => format.h} | 4 ++-- source/strings/regex.cpp | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) rename source/strings/{formatter.cpp => format.cpp} (98%) rename source/strings/{formatter.h => format.h} (96%) diff --git a/source/core/variant.cpp b/source/core/variant.cpp index 1cdc0a5..652999f 100644 --- a/source/core/variant.cpp +++ b/source/core/variant.cpp @@ -1,5 +1,5 @@ #include -#include +#include #include "variant.h" using namespace std; diff --git a/source/strings/formatter.cpp b/source/strings/format.cpp similarity index 98% rename from source/strings/formatter.cpp rename to source/strings/format.cpp index d9d311d..dfd3800 100644 --- a/source/strings/formatter.cpp +++ b/source/strings/format.cpp @@ -5,7 +5,7 @@ Copyright © 2006-2007 Mikko Rasa Distributed under the LGPL */ -#include "formatter.h" +#include "format.h" using namespace std; diff --git a/source/strings/formatter.h b/source/strings/format.h similarity index 96% rename from source/strings/formatter.h rename to source/strings/format.h index cde508b..db74bf9 100644 --- a/source/strings/formatter.h +++ b/source/strings/format.h @@ -5,8 +5,8 @@ Copyright © 2006-2007 Mikko Rasa Distributed under the LGPL */ -#ifndef MSP_STRINGS_FORMATTER_H_ -#define MSP_STRINGS_FORMATTER_H_ +#ifndef MSP_STRINGS_FORMAT_H_ +#define MSP_STRINGS_FORMAT_H_ #include #include "lexicalcast.h" diff --git a/source/strings/regex.cpp b/source/strings/regex.cpp index f45c820..ef99d80 100644 --- a/source/strings/regex.cpp +++ b/source/strings/regex.cpp @@ -8,7 +8,7 @@ Distributed under the LGPL #include #include #include -#include "formatter.h" +#include "format.h" #include "regex.h" using namespace std; -- 2.43.0