1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 05:07:34 +00:00

LibWeb: Use "namespace Web::Foo {" since C++20 allows it :^)

Thanks @nico for teaching me about this!
This commit is contained in:
Andreas Kling 2020-07-21 16:23:08 +02:00
parent 4065182811
commit 685e006e27
15 changed files with 22 additions and 46 deletions

View file

@ -28,8 +28,7 @@
#include <LibWeb/Bindings/EventTargetWrapper.h>
namespace Web {
namespace Bindings {
namespace Web::Bindings {
class XMLHttpRequestWrapper final : public EventTargetWrapper {
public:
@ -46,4 +45,3 @@ private:
XMLHttpRequestWrapper* wrap(JS::GlobalObject&, XMLHttpRequest&);
}
}