Revision: 28730
http://sourceforge.net/p/bibdesk/svn/28730
Author: hofman
Date: 2024-02-12 10:37:23 +0000 (Mon, 12 Feb 2024)
Log Message:
-----------
move ownership qualifier after id
Modified Paths:
--------------
trunk/bibdesk_vendorsrc/amaxwell/FileView/FVPriorityQueue.mm
Modified: trunk/bibdesk_vendorsrc/amaxwell/FileView/FVPriorityQueue.mm
===================================================================
--- trunk/bibdesk_vendorsrc/amaxwell/FileView/FVPriorityQueue.mm
2024-02-12 00:07:17 UTC (rev 28729)
+++ trunk/bibdesk_vendorsrc/amaxwell/FileView/FVPriorityQueue.mm
2024-02-12 10:37:23 UTC (rev 28730)
@@ -191,12 +191,12 @@
const CFIndex iMax = CFArrayGetCount(cfObjects);
CFIndex i, numberAdded = 0;
- __unsafe_unretained id stackBuf[FV_STACK_MAX] = { nil };
+ id __unsafe_unretained stackBuf[FV_STACK_MAX] = { nil };
id __unsafe_unretained *buffer = NULL;
if (iMax > FV_STACK_MAX) {
try {
- buffer = new __unsafe_unretained id[iMax];
+ buffer = new id __unsafe_unretained [iMax];
}
catch (std::bad_alloc&) {
// !!! early return
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
_______________________________________________
Bibdesk-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/bibdesk-commit