Change put method to return a bool

This commit is contained in:
John Platts
2022-09-19 13:56:28 -05:00
committed by GitHub
parent 829c537fd3
commit a4d2d347e3

View File

@@ -42,7 +42,7 @@ public:
HWNDMap();
LPVOID get( HWND key );
void put( HWND key, LPVOID value );
bool put( HWND key, LPVOID value );
void remove( HWND key );
bool isTableAllocated() noexcept { return static_cast<bool>(table); }