mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-29 10:09:01 +08:00
2b35366a5d
* refine hpx port * v db * add tcmalloc on unix * refine comment * v db * remove hardcoded mpi dep * v db * portfile cleanup * v db * add pkgconf as a dep * v db * [snappy] remove debug suffix and add pc file * hpx pass through _HOST_TRIPLET for pkgconf * v db * fix snappy in ffmpeg * v db * fix name clash of output names * v db * remove tcmalloc * v db * remove bin dir; seems empty on !windows * v db * b v * v db * baseline stuff * fix jemalloc missing msvc_compat headers * v db * install usage for hpx * v db * Update versions/f-/ffmpeg.json * revert v db * bump ffmpeg * v db * remove jemalloc since I can force it thorugh the triplet any way. * v db Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
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
|