diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-24 00:57:58 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-24 00:57:58 +0300 |
commit | f90dc196e39686c820414db4503cdeab83ea6078 (patch) | |
tree | a2768964321ca34bd1e8a099d0a6e41f9c16f9ec | |
parent | Handle: add get()/ptr() (diff) | |
download | winapi-common-f90dc196e39686c820414db4503cdeab83ea6078.tar.gz winapi-common-f90dc196e39686c820414db4503cdeab83ea6078.zip |
remove redundant namespace names
Diffstat (limited to '')
-rw-r--r-- | include/winapi/process_io.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/winapi/process_io.hpp b/include/winapi/process_io.hpp index 597cc08..512cb7b 100644 --- a/include/winapi/process_io.hpp +++ b/include/winapi/process_io.hpp @@ -72,9 +72,9 @@ struct IO { void close(); - process::Stdin std_in; - process::Stdout std_out; - process::Stderr std_err; + Stdin std_in; + Stdout std_out; + Stderr std_err; // VS 2013 won't generate these automatically. IO(IO&& other) BOOST_NOEXCEPT_OR_NOTHROW; |