Ver código fonte

WindowServer: Add missing includes

This remained undetected for a long time as HeaderCheck is disabled by
default. This commit makes the following file compile again:

    // file: compile_me.cpp
    #include <WindowServer/SystemEffects.h>
    // That's it, this was enough to cause a compilation error.
Ben Wiederhake 2 anos atrás
pai
commit
929e46f360
1 arquivos alterados com 2 adições e 0 exclusões
  1. 2 0
      Userland/Services/WindowServer/SystemEffects.h

+ 2 - 0
Userland/Services/WindowServer/SystemEffects.h

@@ -6,7 +6,9 @@
 
 
 #pragma once
 #pragma once
 
 
+#include <AK/StringView.h>
 #include <AK/Types.h>
 #include <AK/Types.h>
+#include <AK/Vector.h>
 
 
 namespace WindowServer {
 namespace WindowServer {