add: make leak

main
Dominik Madarász 2024-03-26 13:48:31 +01:00
parent 5836438596
commit fc4cb0daba
1 changed files with 6 additions and 0 deletions

View File

@ -32,6 +32,7 @@ if "%1"=="help" (
echo %0 [bind] ; generate lua bindings
echo %0 [checkmem] ; check untracked allocators in V4K
echo %0 [todo] ; check for @fixme and @todo
echo %0 [leak] ; check for @leak
echo %0 [v4web] ; sync v4 website
echo %0 [swap] ; toggle #line directives on/off
echo %0 [split^|join] ; engine/v4k* ^>split^> engine/split/* or engine/split/* ^>join^> engine/v4k*
@ -312,6 +313,11 @@ if "%1"=="todo" (
exit /b
)
if "%1"=="leak" (
findstr /RNC:"[^_xv]@leak" engine\split\v4k*
exit /b
)
if "%1"=="v4web" (
pushd website\
git pull origin main