flags: rename flags_to_string -> to_string

For consistency.
This commit is contained in:
Dirk-Jan C. Binnema
2022-04-10 12:30:59 +03:00
parent c6ff5f9ce3
commit 478ef67fc6
7 changed files with 7 additions and 7 deletions

View File

@ -27,7 +27,7 @@
using namespace Mu;
std::string
Mu::flags_to_string(Flags flags)
Mu::to_string(Flags flags)
{
std::string str;

View File

@ -328,7 +328,7 @@ flags_filter(Flags flags, MessageFlagCategory cat)
*
* @return string as a sequence of message-flag shortcuts
*/
std::string flags_to_string(Flags flags);
std::string to_string(Flags flags);
} // namespace Mu