Add clang-tidy readability-redundant-inline-specifier (#1060)

* Add clang-tidy readability-redundant-inline-specifier

* fix

* Update CONTRIBUTING.md

* format

* fix
This commit is contained in:
Christian Semmler
2024-07-04 16:06:32 -07:00
committed by GitHub
parent 0873b782c5
commit bee101b1f4
186 changed files with 872 additions and 886 deletions

View File

@@ -15,11 +15,11 @@ public:
virtual LegoResult VTable0x04(); // vtable+0x04
inline LegoU8 GetNumEdges() { return m_numEdges; }
inline LegoEdge** GetEdges() { return m_edges; }
inline LegoU32 IsEqual(LegoWEEdge& p_other) { return this == &p_other; }
LegoU8 GetNumEdges() { return m_numEdges; }
LegoEdge** GetEdges() { return m_edges; }
LegoU32 IsEqual(LegoWEEdge& p_other) { return this == &p_other; }
inline void SetEdges(LegoEdge** p_edges, LegoU8 p_numEdges)
void SetEdges(LegoEdge** p_edges, LegoU8 p_numEdges)
{
m_edges = p_edges;
m_numEdges = p_numEdges;