Andreas Kling
|
ff2438e0ce
|
LibGUI+LibCpp: Move C++ syntax highlighter to LibCpp
This makes LibGUI not depend on LibCpp.
|
2021-02-07 14:40:36 +01:00 |
|
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 |
|
asynts
|
6dc2c38fd0
|
Everywhere: Replace a bundle of dbg with dbgln.
These changes are arbitrarily divided into multiple commits to make it
easier to find potentially introduced bugs with git bisect.
|
2021-01-22 22:14:30 +01:00 |
|
Andreas Kling
|
13d7c09125
|
Libraries: Move to Userland/Libraries/
|
2021-01-12 12:17:46 +01:00 |
|