mirror of
https://github.com/monero-project/monero.git
synced 2025-12-10 17:11:27 +09:00
10 lines
201 B
C++
10 lines
201 B
C++
#include "fee_priority.h"
|
|
|
|
namespace tools
|
|
{
|
|
std::ostream& operator<<(std::ostream& os, const fee_priority priority)
|
|
{
|
|
return os << fee_priority_utilities::to_string(priority);
|
|
}
|
|
}
|