From 1df71e9b78fd516f9902f42db733f0b02808ad50 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Tue, 5 Jan 2016 21:17:42 +0100 Subject: Fix `generate` problem caused by _boost_ update i.e. the directory tree was not correctly created in all circumstances which led to both the `generate` and `write-file` test cases failing. This was combined with some accumulated changes such as the extraction of process context instantiation. --- ixslt.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ixslt.cc') diff --git a/ixslt.cc b/ixslt.cc index a085af2..a7926dc 100644 --- a/ixslt.cc +++ b/ixslt.cc @@ -19,7 +19,7 @@ namespace { class WarningGuard { public: WarningGuard(InputXSLT::TransformerFacade* transformer): - transformer_(transformer) { }; + transformer_(transformer) { } ~WarningGuard() { InputXSLT::WarningCapacitor::warning_cache_ptr warnings( @@ -29,7 +29,7 @@ class WarningGuard { for ( auto&& warning : *warnings ) { std::cerr << warning << std::endl; } - }; + } private: InputXSLT::TransformerFacade* const transformer_; -- cgit v1.2.3