Unix fixes
This commit is contained in:
parent
422871450d
commit
306494bd2d
@ -4,9 +4,8 @@
|
||||
#include "StarMemory.hpp"
|
||||
#include "StarOutputProxy.hpp"
|
||||
|
||||
|
||||
#include <string>
|
||||
|
||||
#include <sstream>
|
||||
|
||||
namespace Star {
|
||||
|
||||
|
@ -5,7 +5,6 @@
|
||||
#include "StarString_windows.hpp"
|
||||
|
||||
#include <DbgHelp.h>
|
||||
#include <sstream>
|
||||
|
||||
namespace Star {
|
||||
|
||||
|
@ -1136,7 +1136,3 @@ size_t hash<StringList>::operator()(StringList const& sl) const {
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
fmt::v10::appender fmt::formatter<Star::String>::format(Star::String const& s, format_context& ctx) const {
|
||||
return formatter<std::string>::format(s.utf8(), ctx);
|
||||
};
|
||||
|
@ -520,7 +520,11 @@ StringList StringList::sorted(Comparator&& comparator) const {
|
||||
}
|
||||
|
||||
template <> struct fmt::formatter<Star::String> : formatter<std::string> {
|
||||
fmt::v10::appender format(Star::String const& s, format_context& ctx) const;
|
||||
auto format(Star::String const& s, format_context& ctx) const;
|
||||
};
|
||||
|
||||
auto fmt::formatter<Star::String>::format(Star::String const& s, format_context& ctx) const {
|
||||
return formatter<std::string>::format(s.utf8(), ctx);
|
||||
};
|
||||
|
||||
#endif
|
||||
|
@ -425,8 +425,4 @@ std::ostream& operator<<(std::ostream& os, StringView const& s) {
|
||||
return os;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
fmt::v10::appender fmt::formatter<Star::StringView>::format(Star::StringView const& s, format_context& ctx) const {
|
||||
return formatter<std::string_view>::format(s.utf8(), ctx);
|
||||
};
|
||||
}
|
@ -116,7 +116,11 @@ private:
|
||||
}
|
||||
|
||||
template <> struct fmt::formatter<Star::StringView> : formatter<std::string_view> {
|
||||
fmt::v10::appender format(Star::StringView const& s, format_context& ctx) const;
|
||||
auto format(Star::StringView const& s, format_context& ctx) const;
|
||||
};
|
||||
|
||||
auto fmt::formatter<Star::StringView>::format(Star::StringView const& s, format_context& ctx) const {
|
||||
return formatter<std::string_view>::format(s.utf8(), ctx);
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue
Block a user