diff options
| author | Adrian Kummerlaender | 2014-09-14 19:49:15 +0200 | 
|---|---|---|
| committer | Adrian Kummerlaender | 2014-09-14 19:49:15 +0200 | 
| commit | 8ebea90f5cee70654ab9f1c19ed4f89dfc8ffb25 (patch) | |
| tree | 55997e02cbcaa5cf2d961dc33a1ff7ca2981ec95 /src/support/dom/document_cache_item.h | |
| parent | ced9f340e88e6011376fb65ae81bf2f2b327ecc0 (diff) | |
| download | InputXSLT-8ebea90f5cee70654ab9f1c19ed4f89dfc8ffb25.tar InputXSLT-8ebea90f5cee70654ab9f1c19ed4f89dfc8ffb25.tar.gz InputXSLT-8ebea90f5cee70654ab9f1c19ed4f89dfc8ffb25.tar.bz2 InputXSLT-8ebea90f5cee70654ab9f1c19ed4f89dfc8ffb25.tar.lz InputXSLT-8ebea90f5cee70654ab9f1c19ed4f89dfc8ffb25.tar.xz InputXSLT-8ebea90f5cee70654ab9f1c19ed4f89dfc8ffb25.tar.zst InputXSLT-8ebea90f5cee70654ab9f1c19ed4f89dfc8ffb25.zip | |
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
Diffstat (limited to 'src/support/dom/document_cache_item.h')
| -rw-r--r-- | src/support/dom/document_cache_item.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| 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<item> std::make_unique<item>(document_ptr&&);  		item(document_ptr&&); | 
