diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2021-01-21 20:55:37 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-22 21:49:54 +0100 |
commit | 67cda61b7f63935032b4e946f908df038ac51ff9 (patch) | |
tree | 86a0991d8461c0921ca0cd2725b8591216ca141f /Userland/Libraries/LibELF | |
parent | 1e7adf5cb632331fca3532342a18a190325d6746 (diff) | |
download | serenity-67cda61b7f63935032b4e946f908df038ac51ff9.zip |
Libraries: Add missing headers
A C++ source file containing just
#include <LibFoo/Bar.h>
should always compile cleanly.
This patch adds missing header inclusions that could have caused weird error
messages if they were used in a different context. Also, this confused QtCreator.
Diffstat (limited to 'Userland/Libraries/LibELF')
-rw-r--r-- | Userland/Libraries/LibELF/Validation.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibELF/Validation.h b/Userland/Libraries/LibELF/Validation.h index fe49c80b82..e5bc75eff9 100644 --- a/Userland/Libraries/LibELF/Validation.h +++ b/Userland/Libraries/LibELF/Validation.h @@ -26,6 +26,7 @@ #pragma once +#include <AK/String.h> #include <LibELF/exec_elf.h> namespace ELF { |