Add utility scripts for finding todos and statics
This commit is contained in:
Binary file not shown.
@@ -0,0 +1,19 @@
|
|||||||
|
@echo off
|
||||||
|
|
||||||
|
echo -------
|
||||||
|
echo -------
|
||||||
|
|
||||||
|
set Wildcard=*.h *.cpp *.inl *.c
|
||||||
|
|
||||||
|
echo STATICS FOUND:
|
||||||
|
findstr -s -n -i -l "static" %Wildcard%
|
||||||
|
|
||||||
|
echo -------
|
||||||
|
echo -------
|
||||||
|
|
||||||
|
@echo GLOBALS FOUND:
|
||||||
|
findstr -s -n -i -l "local_persist" %Wildcard%
|
||||||
|
findstr -s -n -i -l "global_variable" %Wildcard%
|
||||||
|
|
||||||
|
echo -------
|
||||||
|
echo -------
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
@echo off
|
||||||
|
|
||||||
|
echo -------
|
||||||
|
echo -------
|
||||||
|
|
||||||
|
set Wildcard=*.h *.cpp *.inl *.c
|
||||||
|
|
||||||
|
echo TODOS FOUND:
|
||||||
|
findstr -s -n -i -l "TODO" %Wildcard%
|
||||||
|
|
||||||
|
echo -------
|
||||||
|
echo -------
|
||||||
Reference in New Issue
Block a user