From 33c9ee3c9ca6cee40a3979bf9883698ec1bd1dbb Mon Sep 17 00:00:00 2001 From: Anonymous Maarten Date: Wed, 10 Jan 2024 14:49:30 +0100 Subject: [PATCH] Implement empty ViewLODList::Dump method --- LEGO1/viewmanager/viewlodlist.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/LEGO1/viewmanager/viewlodlist.h b/LEGO1/viewmanager/viewlodlist.h index 9dc06d7b..0fc35d07 100644 --- a/LEGO1/viewmanager/viewlodlist.h +++ b/LEGO1/viewmanager/viewlodlist.h @@ -119,4 +119,11 @@ inline int ViewLODList::Release() return m_refCount; } +#ifdef _DEBUG +inline void ViewLODList::Dump(void (*pTracer)(const char*, ...)) const +{ + // FIXME: dump something +} +#endif + #endif // VIEWLODLIST_H