shall we be just a little less Toyota

This commit is contained in:
rusefillc 2023-11-01 09:48:33 -04:00
parent 5e311f99fb
commit 850d79d89d
4 changed files with 6 additions and 6 deletions

@ -1 +1 @@
Subproject commit 53613ddde6db8d028d8e4c31242117c7745a1bb1
Subproject commit 12889f85302c4bc655cbc5e362cefbcdc623b4f7

View File

@ -55,10 +55,10 @@ public:
}
}
void clear(ClearReason clearReason) {
void clear(ClearReason p_clearReason) {
if (m_value) {
m_value = false;
this->clearReason = clearReason;
clearReason = p_clearReason;
}
}

View File

@ -44,7 +44,7 @@ public:
// See comment in EventQueue::executeAll for info about lateDelay - it sets the
// time gap between events for which we will wait instead of rescheduling the next
// event in a group of events near one another.
EventQueue(efitick_t lateDelay = 0) : lateDelay(lateDelay) {}
EventQueue(efitick_t p_lateDelay = 0) : lateDelay(p_lateDelay) {}
/**
* O(size) - linear search in sorted linked list

View File

@ -50,7 +50,7 @@ class VvtTriggerConfiguration final : public TriggerConfiguration {
public:
const int index;
VvtTriggerConfiguration(const char * prefix, const int index) : TriggerConfiguration(prefix), index(index) {
VvtTriggerConfiguration(const char * prefix, const int p_index) : TriggerConfiguration(prefix), index(p_index) {
}
protected:
@ -224,7 +224,7 @@ private:
class VvtTriggerDecoder : public TriggerDecoderBase {
public:
VvtTriggerDecoder(const char* name) : TriggerDecoderBase(name) { }
VvtTriggerDecoder(const char* p_name) : TriggerDecoderBase(p_name) { }
void onNotEnoughTeeth(int actual, int expected) override;
void onTooManyTeeth(int actual, int expected) override;