Replace folly::writeTo with fmt::print
Summary:
Remove `folly::writeTo` which is untested and virtually unused, replacing
```
folly::writeTo(
stdout,
folly::format(...));
```
with
```
fmt::print(...);
```
for better compatibility with C++20 `std::format`.
Reviewed By: yfeldblum
Differential Revision: D26326405
fbshipit-source-id: 598ec5d7906b2d36b20aa63f410a0c2621bc62fa
Showing
Please register or sign in to comment