diff options
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(); |