mirror of
https://github.com/RGBCube/serenity
synced 2025-10-27 09:42:08 +00:00
This was done with the following script:
find . \( -name '*.cpp' -o -name '*.h' -o -name '*.in' \) -not -path './Toolchain/*' -not -path './Build/*' -exec sed -i -E 's/dbgln<debug_([a-z_]+)>/dbgln<\U\1_DEBUG>/' {} \;
find . \( -name '*.cpp' -o -name '*.h' -o -name '*.in' \) -not -path './Toolchain/*' -not -path './Build/*' -exec sed -i -E 's/if constexpr \(debug_([a-z0-9_]+)/if constexpr \(\U\1_DEBUG/' {} \;
|
||
|---|---|---|
| .. | ||
| AbbreviationsMap.cpp | ||
| AbbreviationsMap.h | ||
| CompilationUnit.cpp | ||
| CompilationUnit.h | ||
| DIE.cpp | ||
| DIE.h | ||
| DwarfInfo.cpp | ||
| DwarfInfo.h | ||
| DwarfTypes.h | ||
| Expression.cpp | ||
| Expression.h | ||
| LineProgram.cpp | ||
| LineProgram.h | ||