Title: [278321] trunk/Source/WTF
- Revision
- 278321
- Author
- [email protected]
- Date
- 2021-06-01 12:24:53 -0700 (Tue, 01 Jun 2021)
Log Message
Unreviewed build fix after r277881.
Silence unused parameter warnings.
* wtf/cocoa/FileSystemCocoa.mm:
(WTF::FileSystemImpl::setAllowsMaterializingDatalessFiles):
(WTF::FileSystemImpl::allowsMaterializingDatalessFiles): Deleted.
(WTF::FileSystemImpl::isSafeToUseMemoryMapForPath): Deleted.
(WTF::FileSystemImpl::makeSafeToUseMemoryMapForPath): Deleted.
Modified Paths
Diff
Modified: trunk/Source/WTF/ChangeLog (278320 => 278321)
--- trunk/Source/WTF/ChangeLog 2021-06-01 19:09:25 UTC (rev 278320)
+++ trunk/Source/WTF/ChangeLog 2021-06-01 19:24:53 UTC (rev 278321)
@@ -1,3 +1,15 @@
+2021-06-01 Chris Dumez <[email protected]>
+
+ Unreviewed build fix after r277881.
+
+ Silence unused parameter warnings.
+
+ * wtf/cocoa/FileSystemCocoa.mm:
+ (WTF::FileSystemImpl::setAllowsMaterializingDatalessFiles):
+ (WTF::FileSystemImpl::allowsMaterializingDatalessFiles): Deleted.
+ (WTF::FileSystemImpl::isSafeToUseMemoryMapForPath): Deleted.
+ (WTF::FileSystemImpl::makeSafeToUseMemoryMapForPath): Deleted.
+
2021-06-01 Adrian Perez de Castro <[email protected]>
[WPE][GTK] Support building against uClibc
Modified: trunk/Source/WTF/wtf/cocoa/FileSystemCocoa.mm (278320 => 278321)
--- trunk/Source/WTF/wtf/cocoa/FileSystemCocoa.mm 2021-06-01 19:09:25 UTC (rev 278320)
+++ trunk/Source/WTF/wtf/cocoa/FileSystemCocoa.mm 2021-06-01 19:24:53 UTC (rev 278321)
@@ -170,6 +170,8 @@
}
return true;
#else
+ UNUSED_PARAM(allow);
+ UNUSED_PARAM(scope);
return false;
#endif
}
@@ -185,6 +187,7 @@
LOG_ERROR("FileSystem::allowsMaterializingDatalessFiles(): getiopolicy_np call failed, errno: %d", errno);
return std::nullopt;
#else
+ UNUSED_PARAM(scope);
return std::nullopt;
#endif
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes