add "Links" log type for diagnosing linked lib members

This commit is contained in:
Nikita Smith
2025-09-07 16:07:39 -07:00
committed by Ryan Fleury
parent 082f6cf6fd
commit 8a22910d9b
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -45,6 +45,7 @@ lnk_log_type_from_string(String8 string)
"SizeBreakdown", LNK_Log_SizeBreakdown,
"LinkStats", LNK_Log_LinkStats,
"Timers", LNK_Log_Timers,
"Links", LNK_Log_Links,
};
Assert(ArrayCount(map) == LNK_Log_Count);
+1
View File
@@ -14,6 +14,7 @@ typedef enum
LNK_Log_SizeBreakdown,
LNK_Log_LinkStats,
LNK_Log_Timers,
LNK_Log_Links,
LNK_Log_Count
} LNK_LogType;