spdlog/example/utils.h

35 lines
625 B
C
Raw Normal View History

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