diff options
| author | Roland McGrath <[email protected]> | 2009-03-25 19:30:57 -0700 |
|---|---|---|
| committer | Roland McGrath <[email protected]> | 2009-03-25 19:30:57 -0700 |
| commit | 0368f6412fbe8f2e9b70734eb8768e1753f7031e (patch) | |
| tree | c95d76e7523c8e65b5e919b5436cefaddba673d3 | |
| parent | 09881df7297c1e59d0e1f4bef1531ed0e48ab2f8 (diff) | |
Fix initializer for dwarf::raw_attributes::end case.
| -rw-r--r-- | libdw/c++/dwarf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdw/c++/dwarf b/libdw/c++/dwarf index 81d7d85c..e32d3441 100644 --- a/libdw/c++/dwarf +++ b/libdw/c++/dwarf @@ -595,7 +595,7 @@ namespace elfutils } inline const_iterator (const debug_info_entry &die, ptrdiff_t offset) - : _m_die (die), _m_offset (offset) {} + : _m_die (die), _m_offset (offset), _m_attr () {} public: inline const_iterator (const const_iterator &i) |
