summaryrefslogtreecommitdiff
path: root/DevTools
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-11-15 13:11:21 +0100
committerAndreas Kling <kling@serenityos.org>2020-11-15 13:11:21 +0100
commitadabcf24ec079d38f467dea690ffcdfecfd03d68 (patch)
tree7043f6d545c198e4e6cd1ec259f70c4987a8a20e /DevTools
parent9ffdb7111183aa9eb7e107a38d99e79c81444760 (diff)
downloadserenity-adabcf24ec079d38f467dea690ffcdfecfd03d68.zip
Everywhere: Add missing <AK/ByteBuffer.h> includes
All of these files were getting ByteBuffer.h from someone else and then using it. Let's include it explicitly.
Diffstat (limited to 'DevTools')
-rw-r--r--DevTools/IPCCompiler/main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/DevTools/IPCCompiler/main.cpp b/DevTools/IPCCompiler/main.cpp
index fcb84153b3..fa55e94106 100644
--- a/DevTools/IPCCompiler/main.cpp
+++ b/DevTools/IPCCompiler/main.cpp
@@ -24,6 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+#include <AK/ByteBuffer.h>
#include <AK/Function.h>
#include <AK/GenericLexer.h>
#include <AK/HashMap.h>