Fix -Wreorder warning

Subscribers: aheejin, llvm-commits

Differential Revision: https://reviews.llvm.org/D41255

llvm-svn: 320741
This commit is contained in:
Sam Clegg 2017-12-14 21:09:31 +00:00
parent 271018d216
commit ea244bf89b
1 changed files with 2 additions and 2 deletions

View File

@ -73,8 +73,8 @@ struct CVIndexMap {
class PDBLinker {
public:
PDBLinker(SymbolTable *Symtab)
: Alloc(), Symtab(Symtab), Builder(Alloc), GlobalTypeTable(Alloc),
TypeTable(Alloc), IDTable(Alloc), GlobalIDTable(Alloc) {}
: Alloc(), Symtab(Symtab), Builder(Alloc), TypeTable(Alloc),
IDTable(Alloc), GlobalTypeTable(Alloc), GlobalIDTable(Alloc) {}
/// Emit the basic PDB structure: initial streams, headers, etc.
void initialize(const llvm::codeview::DebugInfo &BuildId);