Prefix LOG and CHECK with AOS_
This prepares us for introducing glog more widely and transitioning
things over where they make sense.
Change-Id: Ic6c208882407bc2153fe875ffc736d66f5c8ade5
diff --git a/frc971/wpilib/encoder_and_potentiometer.cc b/frc971/wpilib/encoder_and_potentiometer.cc
index 8fe8c25..ac1a4a0 100644
--- a/frc971/wpilib/encoder_and_potentiometer.cc
+++ b/frc971/wpilib/encoder_and_potentiometer.cc
@@ -21,10 +21,10 @@
}
void InterruptEncoderAndPotentiometer::Start() {
- CHECK_NE(nullptr, encoder_);
- CHECK_NE(nullptr, index_);
- CHECK_NE(nullptr, potentiometer_);
- CHECK_NE(0, priority_);
+ AOS_CHECK_NE(nullptr, encoder_);
+ AOS_CHECK_NE(nullptr, index_);
+ AOS_CHECK_NE(nullptr, potentiometer_);
+ AOS_CHECK_NE(0, priority_);
thread_ = ::std::thread(::std::ref(*this));
}