mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-28 02:11:43 +00:00
wpiutil: EventLoopRunner: Remove extraneous wpi namespace qualifier
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user