mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-02 06:48:59 +08:00
13 lines
662 B
Diff
13 lines
662 B
Diff
|
diff --git a/components/iostreams/include/hpx/components/iostreams/ostream.hpp b/components/iostreams/include/hpx/components/iostreams/ostream.hpp
|
||
|
index 423f4728d00..dda4b059796 100644
|
||
|
--- a/components/iostreams/include/hpx/components/iostreams/ostream.hpp
|
||
|
+++ b/components/iostreams/include/hpx/components/iostreams/ostream.hpp
|
||
|
@@ -398,6 +398,6 @@ namespace hpx { namespace util {
|
||
|
hpx::iostreams::ostream<Char, Sink>& os, std::string const& format_str,
|
||
|
Args const&... args)
|
||
|
{
|
||
|
- return os << format(format_str, args...);
|
||
|
+ return os << hpx::util::format(format_str, args...);
|
||
|
}
|
||
|
}} // namespace hpx::util
|