diff options
author | Pavel Labath <labath@google.com> | 2017-12-11 10:09:14 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2017-12-11 10:09:14 +0000 |
commit | 07d6f881e7dee93771f8516e6e600abda29dac70 (patch) | |
tree | 99b496bd183b5e19f52d42a15cbd43c1bacabf3e /lldb/unittests/Editline/EditlineTest.cpp | |
parent | 390b4879940edd78ab00d535917014df3a43bec4 (diff) | |
download | bcm5719-llvm-07d6f881e7dee93771f8516e6e600abda29dac70.tar.gz bcm5719-llvm-07d6f881e7dee93771f8516e6e600abda29dac70.zip |
Move PseudoTerminal to the lldb_private namespace
lldb_utility doesn't make sense, as it is no longer even living in the
"utility" module.
llvm-svn: 320346
Diffstat (limited to 'lldb/unittests/Editline/EditlineTest.cpp')
-rw-r--r-- | lldb/unittests/Editline/EditlineTest.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/unittests/Editline/EditlineTest.cpp b/lldb/unittests/Editline/EditlineTest.cpp index 668d1f54212..963d9043e99 100644 --- a/lldb/unittests/Editline/EditlineTest.cpp +++ b/lldb/unittests/Editline/EditlineTest.cpp @@ -25,6 +25,8 @@ #include "lldb/Utility/Status.h" #include "lldb/Utility/StringList.h" +using namespace lldb_private; + namespace { const size_t TIMEOUT_MILLIS = 5000; } @@ -81,7 +83,7 @@ private: std::unique_ptr<lldb_private::Editline> _editline_sp; - lldb_utility::PseudoTerminal _pty; + PseudoTerminal _pty; int _pty_master_fd; int _pty_slave_fd; |