From dcb2f44424af59b047f2335b90a662a03ad261d4 Mon Sep 17 00:00:00 2001 From: Hans Wennborg Date: Thu, 14 Dec 2017 19:51:18 +0000 Subject: [PATCH] Fix a -Wreorder warning llvm-svn: 320738 --- lld/COFF/PDB.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lld/COFF/PDB.cpp b/lld/COFF/PDB.cpp index 1a6516b59ee4..251d64da9eaf 100644 --- a/lld/COFF/PDB.cpp +++ b/lld/COFF/PDB.cpp @@ -74,7 +74,7 @@ class PDBLinker { public: PDBLinker(SymbolTable *Symtab) : Alloc(), Symtab(Symtab), Builder(Alloc), GlobalTypeTable(Alloc), - GlobalIDTable(Alloc), TypeTable(Alloc), IDTable(Alloc) {} + TypeTable(Alloc), IDTable(Alloc), GlobalIDTable(Alloc) {} /// Emit the basic PDB structure: initial streams, headers, etc. void initialize(const llvm::codeview::DebugInfo &BuildId); -- GitLab