Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-01-25 | Everywhere: Debug macros instead of constexpr. | asynts | |
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-22 | Everywhere: Replace a bundle of dbg with dbgln. | asynts | |
These changes are arbitrarily divided into multiple commits to make it easier to find potentially introduced bugs with git bisect. | |||
2021-01-12 | Services: Move to Userland/Services/ | Andreas Kling | |