This commit is contained in:
gabime 2017-02-17 16:40:59 +02:00
parent 311937815e
commit 93d84e5d59
2 changed files with 9 additions and 5 deletions

View File

@ -80,7 +80,8 @@ static int to12h(const tm& t)
//Abbreviated weekday name
using days_array = std::array<std::string, 7>;
static const days_array& days() {
static const days_array& days()
{
static const days_array arr{ "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" };
return arr;
}
@ -93,7 +94,8 @@ class a_formatter:public flag_formatter
};
//Full weekday name
static const days_array& full_days() {
static const days_array& full_days()
{
static const days_array arr{ "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" };
return arr;
}
@ -107,7 +109,8 @@ class A_formatter:public flag_formatter
//Abbreviated month
using months_array = std::array<std::string, 12>;
static const months_array& months() {
static const months_array& months()
{
static const months_array arr{ "Jan", "Feb", "Mar", "Apr", "May", "June", "July", "Aug", "Sept", "Oct", "Nov", "Dec" };
return arr;
}
@ -120,7 +123,8 @@ class b_formatter:public flag_formatter
};
//Full month name
static const months_array& full_months() {
static const months_array& full_months()
{
static const months_array arr{ "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" };
return arr;
}

View File

@ -7,7 +7,7 @@
#pragma once
#define SPDLOG_VERSION "0.11.0"
#define SPDLOG_VERSION "0.12.0"
#include <spdlog/tweakme.h>
#include <spdlog/common.h>