| commit | 163178eee1e3235c18fc9c5c035ac00634b71507 | [log] [tgz] |
|---|---|---|
| author | Victor Zverovich <victor.zverovich@gmail.com> | Thu Sep 25 07:08:25 2014 -0700 |
| committer | Victor Zverovich <victor.zverovich@gmail.com> | Thu Sep 25 07:08:25 2014 -0700 |
| tree | e0c8126e81bd2c1c11eeb23de94d30410cb2d981 | |
| parent | ae8bc36e57b6ad0227d97f8a2ea954b8b62342fc [diff] [blame] |
Make print non-inline
diff --git a/format.cc b/format.cc index 5ec3f42..1297197 100644 --- a/format.cc +++ b/format.cc
@@ -1030,6 +1030,10 @@ std::fwrite(w.data(), 1, w.size(), f); } +void fmt::print(StringRef format_str, ArgList args) { + print(stdout, format_str, args); +} + void fmt::print(std::ostream &os, StringRef format_str, ArgList args) { Writer w; w.write(format_str, args);