mirror of https://github.com/libsdl-org/SDL.git
SDL_cocoakeyboard: Fix errant semicolons in sendPendingKey and clearPendingKey definitions
- These are ignored by Clang but produce a warning: "semicolon before method body is ignored"
This commit is contained in:
parent
2c1d40a9eb
commit
cea71fbfcc
|
|
@ -203,7 +203,7 @@
|
|||
_pendingTimestamp = timestamp;
|
||||
}
|
||||
|
||||
- (void)sendPendingKey;
|
||||
- (void)sendPendingKey
|
||||
{
|
||||
if (_pendingRawCode < 0) {
|
||||
return;
|
||||
|
|
@ -213,7 +213,7 @@
|
|||
[self clearPendingKey];
|
||||
}
|
||||
|
||||
- (void)clearPendingKey;
|
||||
- (void)clearPendingKey
|
||||
{
|
||||
_pendingRawCode = -1;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue