diff options
Diffstat (limited to 'atf-c++/detail/process.hpp')
-rw-r--r-- | atf-c++/detail/process.hpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/atf-c++/detail/process.hpp b/atf-c++/detail/process.hpp index 6e33e0037d87..bc55a5721c74 100644 --- a/atf-c++/detail/process.hpp +++ b/atf-c++/detail/process.hpp @@ -41,11 +41,10 @@ extern "C" { #include <string> #include <vector> +#include "auto_array.hpp" #include "exceptions.hpp" #include "fs.hpp" -#include "../utils.hpp" - namespace atf { namespace process { @@ -64,7 +63,7 @@ class argv_array { // std::tr1::shared_array instead when it becomes widely available. // The reason would be to remove all copy constructors and assignment // operators from this class. - utils::auto_array< const char* > m_exec_argv; + auto_array< const char* > m_exec_argv; void ctor_init_exec_argv(void); public: |