From 8ebea90f5cee70654ab9f1c19ed4f89dfc8ffb25 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Sun, 14 Sep 2014 19:49:15 +0200 Subject: Switched member initialization to std::make_unique * i.e. InputXSLT now requires a C++14 supporting compiler / standard library implementation * this was done while enabling the StreamInputSource to handle all kinds of streams ** this in turn is required to enable e.g. stdin as transformation source while preserving the correct filesystem context --- src/support/dom/document_cache.cc | 2 +- src/support/dom/document_cache_item.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/support/dom') diff --git a/src/support/dom/document_cache.cc b/src/support/dom/document_cache.cc index c18bf96..c000aef 100644 --- a/src/support/dom/document_cache.cc +++ b/src/support/dom/document_cache.cc @@ -33,7 +33,7 @@ xalan::XalanDocument* DomDocumentCache::create(document_ptr&& document) { std::lock_guard guard(this->write_mutex_); this->cache_.emplace( - new item( + std::make_unique( std::move(document) ) ); diff --git a/src/support/dom/document_cache_item.h b/src/support/dom/document_cache_item.h index ebc9172..df24948 100644 --- a/src/support/dom/document_cache_item.h +++ b/src/support/dom/document_cache_item.h @@ -17,7 +17,7 @@ class DomDocumentCache::item { xalan::XalanDocument* getXalanDocument(); protected: - friend DomDocumentCache; + friend std::unique_ptr std::make_unique(document_ptr&&); item(document_ptr&&); -- cgit v1.2.3