Cleaned up variable names for std::lock_guard and their associated mutexes (#759)

This commit is contained in:
Tyler Veness
2017-11-22 17:10:21 -08:00
committed by Peter Johnson
parent 96de0b5b11
commit ba879f4663
22 changed files with 136 additions and 137 deletions

View File

@@ -41,7 +41,7 @@ class MotorSafetyHelper : public ErrorBase {
double m_stopTime;
// Protect accesses to the state for this object
mutable wpi::mutex m_syncMutex;
mutable wpi::mutex m_thisMutex;
// The object that is using the helper
MotorSafety* m_safeObject;