remove Mu::format, use mu_format
Use the new fmt-based formatting.
This commit is contained in:
@ -34,7 +34,6 @@
|
||||
#include <algorithm>
|
||||
#include <numeric>
|
||||
|
||||
#include "mu-utils-format.hh"
|
||||
#include "mu-option.hh"
|
||||
|
||||
|
||||
@ -375,6 +374,17 @@ std::string size_to_string(int64_t size);
|
||||
*/
|
||||
std::string summarize(const std::string& str, size_t max_lines);
|
||||
|
||||
|
||||
/**
|
||||
* Quote & escape a string for " and \
|
||||
*
|
||||
* @param str a string
|
||||
*
|
||||
* @return quoted string
|
||||
*/
|
||||
std::string quote(const std::string& str);
|
||||
|
||||
|
||||
/**
|
||||
* Convert any ostreamable<< value to a string
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user