mirror of
https://github.com/jezhiggins/arabica
synced 2024-12-25 21:58:21 +01:00
Got rid of auto_ptr in the XSLT stylesheet compiler
This commit is contained in:
parent
a7ff4b9a1b
commit
6674947a12
3 changed files with 10 additions and 10 deletions
|
@ -25,7 +25,7 @@ int main(int argc, const char* argv[])
|
|||
try
|
||||
{
|
||||
Arabica::SAX::InputSource<std::string> source(argv[2]);
|
||||
std::auto_ptr<Arabica::XSLT::Stylesheet<std::string> > stylesheet = compiler.compile(source);
|
||||
std::unique_ptr<Arabica::XSLT::Stylesheet<std::string> > stylesheet = compiler.compile(source);
|
||||
if(stylesheet.get() == 0)
|
||||
{
|
||||
std::cerr << "Couldn't compile stylesheet: " << compiler.error() << std::endl;
|
||||
|
|
|
@ -227,11 +227,11 @@ public:
|
|||
{
|
||||
} // ~StylesheetCompiler
|
||||
|
||||
std::auto_ptr<Stylesheet<string_type, string_adaptor> > compile(InputSourceT& source)
|
||||
std::unique_ptr<Stylesheet<string_type, string_adaptor> > compile(InputSourceT& source)
|
||||
{
|
||||
error_ = "";
|
||||
|
||||
std::auto_ptr<CompiledStylesheet<string_type, string_adaptor> > stylesheet(new CompiledStylesheet<string_type, string_adaptor>());
|
||||
auto stylesheet = std::make_unique<CompiledStylesheet<string_type, string_adaptor>>();
|
||||
|
||||
StylesheetParser<string_type, string_adaptor> parser;
|
||||
CompilationContext<string_type, string_adaptor> context(parser, *stylesheet.get());
|
||||
|
@ -252,7 +252,7 @@ public:
|
|||
stylesheet.reset();
|
||||
} // catch
|
||||
|
||||
return std::auto_ptr<Stylesheet<string_type, string_adaptor> >(stylesheet.release());
|
||||
return std::unique_ptr<Stylesheet<string_type, string_adaptor> >(stylesheet.release());
|
||||
} // compile
|
||||
|
||||
const std::string& error() const
|
||||
|
|
|
@ -177,7 +177,7 @@ protected:
|
|||
Arabica::XSLT::StylesheetCompiler<string_type, string_adaptor> compiler;
|
||||
|
||||
Arabica::SAX::InputSource<string_type, string_adaptor> source(string_adaptor::construct(input_xslt_));
|
||||
std::auto_ptr<Arabica::XSLT::Stylesheet<string_type, string_adaptor> > stylesheet = compiler.compile(source);
|
||||
std::unique_ptr<Arabica::XSLT::Stylesheet<string_type, string_adaptor> > stylesheet = compiler.compile(source);
|
||||
if(stylesheet.get() != 0)
|
||||
assertImplementation(false, "Expected " + input_xslt_ + " not to compile. But it did :o");
|
||||
throw SkipException(reason_ + " : " + compiler.error());
|
||||
|
@ -209,7 +209,7 @@ protected:
|
|||
Arabica::XSLT::StylesheetCompiler<string_type, string_adaptor> compiler;
|
||||
|
||||
Arabica::SAX::InputSource<string_type, string_adaptor> source(string_adaptor::construct(input_xslt_));
|
||||
std::auto_ptr<Arabica::XSLT::Stylesheet<string_type, string_adaptor> > stylesheet = compiler.compile(source);
|
||||
std::unique_ptr<Arabica::XSLT::Stylesheet<string_type, string_adaptor> > stylesheet = compiler.compile(source);
|
||||
if(stylesheet.get() == 0)
|
||||
assertImplementation(false, "Failed to compile " + input_xslt_ + " : " + compiler.error());
|
||||
|
||||
|
@ -255,7 +255,7 @@ protected:
|
|||
|
||||
string_type input = string_adaptor::construct(input_xslt_);
|
||||
Arabica::SAX::InputSource<string_type, string_adaptor> source(input);
|
||||
std::auto_ptr<Arabica::XSLT::Stylesheet<string_type, string_adaptor> > stylesheet = compiler.compile(source);
|
||||
std::unique_ptr<Arabica::XSLT::Stylesheet<string_type, string_adaptor> > stylesheet = compiler.compile(source);
|
||||
if(stylesheet.get() == 0)
|
||||
return;
|
||||
|
||||
|
@ -301,7 +301,7 @@ protected:
|
|||
Arabica::XSLT::StylesheetCompiler<string_type, string_adaptor> compiler;
|
||||
|
||||
Arabica::SAX::InputSource<string_type, string_adaptor> source(string_adaptor::construct(input_xslt_));
|
||||
std::auto_ptr<Arabica::XSLT::Stylesheet<string_type, string_adaptor> > stylesheet = compiler.compile(source);
|
||||
std::unique_ptr<Arabica::XSLT::Stylesheet<string_type, string_adaptor> > stylesheet = compiler.compile(source);
|
||||
if(stylesheet.get() == 0)
|
||||
assertImplementation(false, "Failed to compile " + input_xslt_ + " : " + compiler.error());
|
||||
|
||||
|
@ -397,7 +397,7 @@ protected:
|
|||
Arabica::XSLT::StylesheetCompiler<string_type, string_adaptor> compiler;
|
||||
|
||||
Arabica::SAX::InputSource<string_type, string_adaptor> source(string_adaptor::construct(input_xslt_));
|
||||
std::auto_ptr<Arabica::XSLT::Stylesheet<string_type, string_adaptor> > stylesheet = compiler.compile(source);
|
||||
std::unique_ptr<Arabica::XSLT::Stylesheet<string_type, string_adaptor> > stylesheet = compiler.compile(source);
|
||||
if(stylesheet.get() == 0)
|
||||
assertImplementation(false, "Failed to compile " + input_xslt_ + " : " + compiler.error());
|
||||
|
||||
|
@ -498,7 +498,7 @@ protected:
|
|||
Arabica::XSLT::StylesheetCompiler<string_type, string_adaptor> compiler;
|
||||
|
||||
Arabica::SAX::InputSource<string_type, string_adaptor> source(string_adaptor::construct(input_xslt_));
|
||||
std::auto_ptr<Arabica::XSLT::Stylesheet<string_type, string_adaptor> > stylesheet = compiler.compile(source);
|
||||
std::unique_ptr<Arabica::XSLT::Stylesheet<string_type, string_adaptor> > stylesheet = compiler.compile(source);
|
||||
if(stylesheet.get() == 0)
|
||||
assertImplementation(false, "Failed to compile " + input_xslt_ + " : " + compiler.error());
|
||||
|
||||
|
|
Loading…
Reference in a new issue