diff options
| author | Julio Merino <jmmv@FreeBSD.org> | 2013-11-15 21:28:06 +0000 |
|---|---|---|
| committer | Julio Merino <jmmv@FreeBSD.org> | 2013-11-15 21:28:06 +0000 |
| commit | b2b6e97c465e6ea7f9e9e631898d5ec26c65daa1 (patch) | |
| tree | e48e3dcbeca816c29ca712eac6c8f5b0e8bc07f0 /atf-c++/detail/process.cpp | |
| parent | f1e38e2131a6c87bafd2199650db07955c0386e0 (diff) | |
Diffstat (limited to 'atf-c++/detail/process.cpp')
| -rw-r--r-- | atf-c++/detail/process.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/atf-c++/detail/process.cpp b/atf-c++/detail/process.cpp index deb1158bcf8d..f7ae6d49de00 100644 --- a/atf-c++/detail/process.cpp +++ b/atf-c++/detail/process.cpp @@ -50,10 +50,10 @@ namespace impl = atf::process; // ------------------------------------------------------------------------ template< class C > -atf::utils::auto_array< const char* > +atf::auto_array< const char* > collection_to_argv(const C& c) { - atf::utils::auto_array< const char* > argv(new const char*[c.size() + 1]); + atf::auto_array< const char* > argv(new const char*[c.size() + 1]); std::size_t pos = 0; for (typename C::const_iterator iter = c.begin(); iter != c.end(); |
