mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-02 20:32:49 +00:00
Fixed bug https://github.com/vitaut/format/issues/16 . Thanks to https://github.com/fil222 !
This commit is contained in:
parent
ea5dce3957
commit
c3f5dce8d5
@ -1022,6 +1022,10 @@ void CheckUnknownTypes(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TEST(FormatterTest, FormatBool) {
|
||||||
|
EXPECT_EQ(L"1", str(Format(L"{}") << true));
|
||||||
|
}
|
||||||
|
|
||||||
TEST(FormatterTest, FormatShort) {
|
TEST(FormatterTest, FormatShort) {
|
||||||
short s = 42;
|
short s = 42;
|
||||||
EXPECT_EQ("42", str(Format("{0:d}") << s));
|
EXPECT_EQ("42", str(Format("{0:d}") << s));
|
||||||
|
2
format.h
2
format.h
@ -760,7 +760,7 @@ class BasicWriter {
|
|||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Write(const std::basic_string<char> &s, const FormatSpec &spec) {
|
void Write(const std::basic_string<Char> &s, const FormatSpec &spec) {
|
||||||
FormatString(s.data(), s.size(), spec);
|
FormatString(s.data(), s.size(), spec);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user