mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 05:57:44 +00:00
Everywhere: Remove unnecessary debug comments.
It would be tempting to uncomment these statements, but that won't work with the new changes. This was done with the following commands: find . \( -name '*.cpp' -o -name '*.h' -o -name '*.in' \) -not -path './Toolchain/*' -not -path './Build/*' -exec awk -i inplace '$0 !~ /\/\/#define/ { if (!toggle) { print; } else { toggle = !toggle } } ; $0 ~/\/\/#define/ { toggle = 1 }' {} \; find . \( -name '*.cpp' -o -name '*.h' -o -name '*.in' \) -not -path './Toolchain/*' -not -path './Build/*' -exec awk -i inplace '$0 !~ /\/\/ #define/ { if (!toggle) { print; } else { toggle = !toggle } } ; $0 ~/\/\/ #define/ { toggle = 1 }' {} \;
This commit is contained in:
parent
1a3a0836c0
commit
acdcf59a33
90 changed files with 0 additions and 200 deletions
|
@ -70,8 +70,6 @@ namespace Kernel {
|
|||
#define PCI_MAX_FUNCTIONS_PER_DEVICE 8
|
||||
// clang-format on
|
||||
|
||||
//#define PCI_DEBUG 1
|
||||
|
||||
namespace PCI {
|
||||
struct ID {
|
||||
u16 vendor_id { 0 };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue