diff --git a/Documentation/QtCreatorConfiguration.md b/Documentation/QtCreatorConfiguration.md index aa817d37a67..e9e06095bbf 100644 --- a/Documentation/QtCreatorConfiguration.md +++ b/Documentation/QtCreatorConfiguration.md @@ -31,7 +31,6 @@ First, make sure you have a working toolchain and can build and run SerenityOS. ./ Userland/ Userland/Libraries/ - Userland/Libraries/LibC/ Userland/Libraries/LibSystem/ Userland/Services/ Toolchain/Local/x86_64/x86_64-pc-serenity/include/c++/13.1.0 diff --git a/Documentation/VSCodeConfiguration.md b/Documentation/VSCodeConfiguration.md index c706be9fe23..f9394ef3ced 100644 --- a/Documentation/VSCodeConfiguration.md +++ b/Documentation/VSCodeConfiguration.md @@ -72,7 +72,6 @@ following ``c_cpp_properties.json`` to circumvent some errors. Even with the con "${workspaceFolder}/Build/x86_64/Root/usr/include/**", "${workspaceFolder}/Userland", "${workspaceFolder}/Userland/Libraries", - "${workspaceFolder}/Userland/Libraries/LibC", "${workspaceFolder}/Userland/Services", "${workspaceFolder}/Toolchain/Local/x86_64/x86_64-pc-serenity/include/c++/**" ], @@ -100,7 +99,6 @@ following ``c_cpp_properties.json`` to circumvent some errors. Even with the con "${workspaceFolder}/Build/x86_64/Root/usr/include/**", "${workspaceFolder}/Userland", "${workspaceFolder}/Userland/Libraries", - "${workspaceFolder}/Userland/Libraries/LibC", "${workspaceFolder}/Userland/Services", "${workspaceFolder}/Toolchain/Local/x86_64/x86_64-pc-serenity/include/c++/**" ], diff --git a/Meta/check-style.py b/Meta/check-style.py index 863ede70fde..3a374bcba1d 100755 --- a/Meta/check-style.py +++ b/Meta/check-style.py @@ -34,7 +34,6 @@ LICENSE_HEADER_CHECK_EXCLUDES = { # We check that "#pragma once" is present PRAGMA_ONCE_STRING = '#pragma once' PRAGMA_ONCE_CHECK_EXCLUDES = { - 'Userland/Libraries/LibC/assert.h', 'Ladybird/AppKit/System/Detail/Header.h', 'Ladybird/AppKit/System/Detail/Footer.h', }