diff options
author | Peter Smith <peter.smith@linaro.org> | 2017-12-15 10:47:44 +0000 |
---|---|---|
committer | Peter Smith <peter.smith@linaro.org> | 2017-12-15 10:47:44 +0000 |
commit | 5597bcb5fc82376d7174a4fd134c12fabf9cbc7a (patch) | |
tree | 809cdaad388eec0686fee8240c5f8f5cb070f240 | |
parent | cf354873c106b4ef1cd7934bd7335f71c65995a6 (diff) | |
download | bcm5719-llvm-5597bcb5fc82376d7174a4fd134c12fabf9cbc7a.tar.gz bcm5719-llvm-5597bcb5fc82376d7174a4fd134c12fabf9cbc7a.zip |
[ELF] Fix buildbot warning error.
Forward declare InputSectionDescription as struct not class.
llvm-svn: 320801
-rw-r--r-- | lld/ELF/AArch64ErrataFix.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/AArch64ErrataFix.h b/lld/ELF/AArch64ErrataFix.h index ed4eec84aac..6c100f25d8a 100644 --- a/lld/ELF/AArch64ErrataFix.h +++ b/lld/ELF/AArch64ErrataFix.h @@ -20,7 +20,7 @@ namespace elf { class Defined; class InputSection; -class InputSectionDescription; +struct InputSectionDescription; class OutputSection; class Patch843419Section; |