aboutsummaryrefslogtreecommitdiffstats
path: root/zlib-flate
diff options
context:
space:
mode:
Diffstat (limited to 'zlib-flate')
-rw-r--r--zlib-flate/zlib-flate.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/zlib-flate/zlib-flate.cc b/zlib-flate/zlib-flate.cc
index 671227b1..f7d0c807 100644
--- a/zlib-flate/zlib-flate.cc
+++ b/zlib-flate/zlib-flate.cc
@@ -59,8 +59,8 @@ main(int argc, char* argv[])
QUtil::binary_stdout();
QUtil::binary_stdin();
- auto out = make_pointer_holder<Pl_StdioFile>("stdout", stdout);
- auto flate = make_pointer_holder<Pl_Flate>("flate", out.get(), action);
+ auto out = std::make_shared<Pl_StdioFile>("stdout", stdout);
+ auto flate = std::make_shared<Pl_Flate>("flate", out.get(), action);
bool warn = false;
flate->setWarnCallback([&warn](char const* msg, int code) {
warn = true;