Skip to content

Commit

Permalink
Avoid confusing autogsdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
rfm committed Aug 6, 2024
1 parent 04f0d76 commit 4c687e6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Headers/Foundation/NSDebug.h
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,8 @@ GS_EXPORT const char* GSDebugAllocationList(BOOL changeFlag);
*/
GS_EXPORT const char* GSDebugAllocationListAll(void);

typedef NSObject *(*GSDebugAllocationTraceFunction)(id);

/**
* This function activates (or deactivates) tracking all allocated
* instances of the specified class c.<br />
Expand Down Expand Up @@ -271,7 +273,7 @@ GS_EXPORT const char* GSDebugAllocationListAll(void);
* allocated instances of that class.
*/
GS_EXPORT BOOL GSDebugAllocationRecordAndTrace(
Class c, BOOL record, NSObject* (*traceFunction)(id));
Class c, BOOL record, GSDebugAllocationTraceFunction traceFunction);

/** Calls GSDebugAllocationRecordAndTrace() with a null trace function.
*/
Expand Down

0 comments on commit 4c687e6

Please sign in to comment.