mirror of
https://github.com/transmission/transmission
synced 2024-12-22 07:42:37 +00:00
8 lines
148 B
C++
8 lines
148 B
C++
#include "Percents.h"
|
|
|
|
#include <libtransmission/utils.h>
|
|
|
|
std::string Percents::to_string() const
|
|
{
|
|
return tr_strpercent(raw_value_ / 100.);
|
|
}
|