mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 08:24:16 +00:00
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:

committed by
GitHub

parent
0873b782c5
commit
bee101b1f4
@@ -31,10 +31,10 @@ public:
|
||||
virtual void Destroy(); // vtable+0x08
|
||||
virtual void DestroyButNotDirectDraw(); // vtable+0x0c
|
||||
|
||||
inline IDirectDraw* DirectDraw() { return m_pDirectDraw; }
|
||||
inline IDirectDrawSurface* FrontBuffer() { return m_pFrontBuffer; }
|
||||
inline IDirectDrawSurface* BackBuffer() { return m_pBackBuffer; }
|
||||
inline IDirectDrawClipper* Clipper() { return m_pClipper; }
|
||||
IDirectDraw* DirectDraw() { return m_pDirectDraw; }
|
||||
IDirectDrawSurface* FrontBuffer() { return m_pFrontBuffer; }
|
||||
IDirectDrawSurface* BackBuffer() { return m_pBackBuffer; }
|
||||
IDirectDrawClipper* Clipper() { return m_pClipper; }
|
||||
|
||||
BOOL IsFullScreen() { return m_bFullScreen; }
|
||||
|
||||
|
Reference in New Issue
Block a user