1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-10-21 21:42:32 +00:00
serenity/Userland/Libraries/LibCrypto/NumberTheory
asynts 8465683dcf Everywhere: Debug macros instead of constexpr.
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/' {} \;
2021-01-25 09:47:36 +01:00
..
ModularFunctions.cpp Everywhere: Debug macros instead of constexpr. 2021-01-25 09:47:36 +01:00
ModularFunctions.h Everywhere: Remove unnecessary debug comments. 2021-01-25 09:47:36 +01:00