Kaydet (Commit) e5d943d9 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

'static' is invalid in friend declarations

Change-Id: I993e4dd219e247ca33022010da350f565c5e0dcf
üst 26537a9c
......@@ -27,7 +27,7 @@ class WinSalTimer final : public SalTimer, protected VersionedEvent
// for access to Impl* functions
friend LRESULT CALLBACK SalComWndProc( HWND, UINT nMsg, WPARAM wParam, LPARAM lParam, int& rDef );
// for access to m_bPollForMessage
friend static void CALLBACK SalTimerProc( PVOID data, BOOLEAN );
friend void CALLBACK SalTimerProc( PVOID data, BOOLEAN );
HANDLE m_nTimerId; ///< Windows timer id
bool m_bPollForMessage; ///< Run yield until a message is caught (most likely the 0ms timer)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment