Skip to content

Commit

Permalink
fix clang tidy warning about reserved identifier in WindowHandle.h
Browse files Browse the repository at this point in the history
  • Loading branch information
ZXShady authored and ChrisThrasher committed Sep 18, 2024
1 parent 082a90e commit ac477cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/CSFML/Window/WindowHandle.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
#if defined(CSFML_SYSTEM_WINDOWS)

// Window handle is HWND (HWND__*) on Windows
struct HWND__;
struct HWND__; // NOLINT(bugprone-reserved-identifier)
typedef struct HWND__* sfWindowHandle;

#elif defined(CSFML_SYSTEM_LINUX) || defined(CSFML_SYSTEM_FREEBSD)
Expand Down

0 comments on commit ac477cf

Please sign in to comment.