Changeset 268757 in webkit
- Timestamp:
- Oct 20, 2020, 1:21:07 PM (6 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/network/SocketStreamHandle.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r268746 r268757 1 2020-10-20 Don Olmstead <don.olmstead@sony.com> 2 3 Fix non-c-typedef-for-linkage warning in SocketStreamHandle 4 https://bugs.webkit.org/show_bug.cgi?id=217979 5 6 Reviewed by Alex Christensen. 7 8 The warning was because the anonymous type was not C-compatible due to a default member 9 initializer, so remove the typedef and name the struct. 10 11 No new tests. No change in behavior. 12 13 * platform/network/SocketStreamHandle.h: 14 1 15 2020-10-20 Antoine Quint <graouts@webkit.org> 2 16 -
trunk/Source/WebCore/platform/network/SocketStreamHandle.h
r246405 r268757 40 40 class SocketStreamHandleClient; 41 41 42 typedef struct{42 struct SourceApplicationAuditToken { 43 43 #if PLATFORM(COCOA) 44 44 RetainPtr<CFDataRef> sourceApplicationAuditData; … … 46 46 void *empty { nullptr }; 47 47 #endif 48 } SourceApplicationAuditToken;48 }; 49 49 50 50 class SocketStreamHandle : public ThreadSafeRefCounted<SocketStreamHandle, WTF::DestructionThread::Main> {
Note:
See TracChangeset
for help on using the changeset viewer.