aboutsummaryrefslogtreecommitdiff
path: root/libbutl/process.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'libbutl/process.hxx')
-rw-r--r--libbutl/process.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbutl/process.hxx b/libbutl/process.hxx
index 799313e..1f82af0 100644
--- a/libbutl/process.hxx
+++ b/libbutl/process.hxx
@@ -9,6 +9,7 @@
# include <sys/types.h> // pid_t
#endif
+#include <string>
#include <vector>
#include <iosfwd>
#include <cassert>
@@ -477,8 +478,7 @@ namespace butl
inline const char*
process_arg_as (const T& x, std::string& storage)
{
- using namespace std;
- return (storage = to_string (x)).c_str ();
+ return (storage = std::to_string (x)).c_str ();
}
inline const char*