Removal of aos::make_unique and its usages
Signed-off-by: Vinay Siva <100024232@mvla.net>
Change-Id: I2aca0e9e20f84d3c4944e1360a8a25c265264dbb
Signed-off-by: Vinay Siva <100024232@mvla.net>
diff --git a/y2019/wpilib_interface.cc b/y2019/wpilib_interface.cc
index d644ee7..891031a 100644
--- a/y2019/wpilib_interface.cc
+++ b/y2019/wpilib_interface.cc
@@ -9,6 +9,7 @@
#include <functional>
#include <mutex>
#include <thread>
+#include <memory>
#include "ctre/phoenix/CANifier.h"
#include "frc971/wpilib/ahal/AnalogInput.h"
@@ -24,7 +25,6 @@
#include "aos/events/shm_event_loop.h"
#include "aos/init.h"
#include "aos/logging/logging.h"
-#include "aos/make_unique.h"
#include "aos/realtime.h"
#include "aos/time/time.h"
#include "aos/util/log_interval.h"
@@ -62,7 +62,7 @@
using ::y2019::constants::Values;
namespace superstructure = ::y2019::control_loops::superstructure;
namespace chrono = ::std::chrono;
-using aos::make_unique;
+using std::make_unique;
namespace y2019 {
namespace wpilib {