Commit c8f0bb40 authored by Simon Pilgrim's avatar Simon Pilgrim
Browse files

YAMLTraits.h - fix uninitialized variable warning. NFCI.

parent d6e0e6d2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1531,7 +1531,7 @@ private:
  document_iterator                   DocIterator;
  std::vector<bool>                   BitValuesUsed;
  HNode *CurrentNode = nullptr;
  bool                                ScalarMatchFound;
  bool                                ScalarMatchFound = false;
};

///