[lld] r320801 - [ELF] Fix buildbot warning error.

Peter Smith via llvm-commits llvm-commits at lists.llvm.org
Fri Dec 15 02:47:44 PST 2017


Author: psmith
Date: Fri Dec 15 02:47:44 2017
New Revision: 320801

URL: http://llvm.org/viewvc/llvm-project?rev=320801&view=rev
Log:
[ELF] Fix buildbot warning error.

Forward declare InputSectionDescription as struct not class.

Modified:
    lld/trunk/ELF/AArch64ErrataFix.h

Modified: lld/trunk/ELF/AArch64ErrataFix.h
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/AArch64ErrataFix.h?rev=320801&r1=320800&r2=320801&view=diff
==============================================================================
--- lld/trunk/ELF/AArch64ErrataFix.h (original)
+++ lld/trunk/ELF/AArch64ErrataFix.h Fri Dec 15 02:47:44 2017
@@ -20,7 +20,7 @@ namespace elf {
 
 class Defined;
 class InputSection;
-class InputSectionDescription;
+struct InputSectionDescription;
 class OutputSection;
 class Patch843419Section;
 




More information about the llvm-commits mailing list