chore(gx): clean up member function declarations in CGxMatrixStack

This commit is contained in:
fallenoak 2023-04-15 21:23:03 -05:00
parent 912d643e9c
commit 01ca76788c
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D

View File

@ -19,9 +19,9 @@ class CGxMatrixStack {
// Member functions
CGxMatrixStack();
void Pop(void);
void Push(void);
C44Matrix& Top(void);
void Pop();
void Push();
C44Matrix& Top();
const C44Matrix& TopConst();
};