Skip to content

Commit 4798fff

Browse files
authored
dispatch: remove stray semicolon (NFC
This cleans up a stray semicolon to allow building with `-Werror=c++98-compat-extra-semi` which is enabled by default in some versions of clang and produces an annoying number of diagnostics when building Swift.
1 parent 085e5fa commit 4798fff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dispatch/source.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ DISPATCH_ASSUME_NONNULL_BEGIN
5454
* Dispatch sources are used to automatically submit event handler blocks to
5555
* dispatch queues in response to external events.
5656
*/
57-
DISPATCH_SOURCE_DECL(dispatch_source);
57+
DISPATCH_SOURCE_DECL(dispatch_source)
5858

5959
__BEGIN_DECLS
6060

0 commit comments

Comments
 (0)