diff options
| author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2014-07-23 15:21:29 +0200 | 
|---|---|---|
| committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2014-07-23 15:21:29 +0200 | 
| commit | bada6666c70977a058755ccf232e7d67b24adeed (patch) | |
| tree | 1e92d50cebce96abaf9bce19e36026c47f77b9ba /xsd/tests/cxx/tree/test-template/driver.cxx | |
| parent | eaf34adcbd8095bc6d1f3371b1227f654c7b19fc (diff) | |
New upstream release
Diffstat (limited to 'xsd/tests/cxx/tree/test-template/driver.cxx')
| -rw-r--r-- | xsd/tests/cxx/tree/test-template/driver.cxx | 7 | 
1 files changed, 3 insertions, 4 deletions
| diff --git a/xsd/tests/cxx/tree/test-template/driver.cxx b/xsd/tests/cxx/tree/test-template/driver.cxx index f36cc10..f28e501 100644 --- a/xsd/tests/cxx/tree/test-template/driver.cxx +++ b/xsd/tests/cxx/tree/test-template/driver.cxx @@ -1,12 +1,11 @@  // file      : tests/cxx/tree/test-template/driver.cxx -// author    : Boris Kolpackov <boris@codesynthesis.com> -// copyright : Copyright (c) 2006-2010 Code Synthesis Tools CC +// copyright : Copyright (c) 2006-2014 Code Synthesis Tools CC  // license   : GNU GPL v2 + exceptions; see accompanying LICENSE file  // Insert test description here.  // -#include <memory> // std::auto_ptr +#include <memory> // std::auto_ptr/unique_ptr  #include <iostream>  #include "test.hxx" @@ -25,7 +24,7 @@ main (int argc, char* argv[])    try    { -    auto_ptr<type> r (root (argv[1])); +    XSD_AUTO_PTR<type> r (root (argv[1]));      cout << *r << endl;    } | 
