wpiutil: EventLoopRunner: Remove extraneous wpi namespace qualifier

This commit is contained in:
Peter Johnson
2018-09-08 00:48:22 -07:00
parent 164e9a2c7d
commit 6d99c0ac6c

View File

@@ -20,7 +20,7 @@ namespace wpi {
*/
class EventLoopRunner {
public:
using LoopFunc = std::function<void(wpi::uv::Loop&)>;
using LoopFunc = std::function<void(uv::Loop&)>;
EventLoopRunner();
virtual ~EventLoopRunner();
@@ -44,7 +44,7 @@ class EventLoopRunner {
private:
class Thread;
wpi::SafeThreadOwner<Thread> m_owner;
SafeThreadOwner<Thread> m_owner;
};
} // namespace wpi