5
0
mirror of https://github.com/ArduPilot/ardupilot synced 2025-01-09 01:18:29 -04:00

AP_Math: use classes to fix MATH_CHECK_INDEXES

This commit is contained in:
Peter Barker 2023-01-18 22:56:31 +11:00 committed by Andrew Tridgell
parent 7f4c5a9a84
commit 5c77c0fbe4

View File

@ -171,6 +171,6 @@ public:
} }
} }
private: protected:
T _v[N]; T _v[N];
}; };