Fix -Wreorder warnings. NFCI.

This commit is contained in:
Simon Pilgrim 2019-11-02 20:12:35 +00:00
parent c0e83fa5ac
commit 99094b9f6e
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ class DIEAbbrev : public FoldingSetNode {
SmallVector<DIEAbbrevData, 12> Data; SmallVector<DIEAbbrevData, 12> Data;
public: public:
DIEAbbrev(dwarf::Tag T, bool C) : Tag(T), Children(C), Number(0) {} DIEAbbrev(dwarf::Tag T, bool C) : Number(0), Tag(T), Children(C) {}
/// Accessors. /// Accessors.
/// @{ /// @{