mirror of
https://github.com/LizardByte/Sunshine.git
synced 2025-01-17 01:14:01 +00:00
15 lines
240 B
C++
15 lines
240 B
C++
/**
|
|
* @file src/stat_trackers.cpp
|
|
* @brief todo
|
|
*/
|
|
#include "stat_trackers.h"
|
|
|
|
namespace stat_trackers {
|
|
|
|
boost::format
|
|
one_digit_after_decimal() {
|
|
return boost::format("%1$.1f");
|
|
}
|
|
|
|
} // namespace stat_trackers
|