spdlog/example/utils.h

35 lines
625 B
C
Raw Normal View History

2015-11-28 18:24:20 +02:00
//
// Copyright(c) 2015 Gabi Melman.
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
//
2014-11-01 03:20:54 +02:00
2014-01-25 15:52:10 +02:00
#pragma once
#include <iomanip>
#include <locale>
2018-03-09 15:26:33 +02:00
#include <sstream>
2014-01-25 15:52:10 +02:00
2018-03-09 15:26:33 +02:00
namespace utils {
2014-01-25 15:52:10 +02:00
2018-03-16 17:35:56 +02:00
template<typename T>
inline std::string format(const T &value)
2014-01-25 15:52:10 +02:00
{
2014-12-21 02:47:04 +02:00
static std::locale loc("");
std::stringstream ss;
ss.imbue(loc);
ss << value;
return ss.str();
2014-01-25 15:52:10 +02:00
}
2018-03-16 17:35:56 +02:00
template<>
inline std::string format(const double &value)
2014-03-01 14:06:58 +02:00
{
2014-12-21 02:47:04 +02:00
static std::locale loc("");
std::stringstream ss;
ss.imbue(loc);
ss << std::fixed << std::setprecision(1) << value;
return ss.str();
2014-03-01 14:06:58 +02:00
}
2018-03-09 15:26:33 +02:00
} // namespace utils