]> git.ipfire.org Git - thirdparty/elfutils.git/commitdiff
Nitpick, don't use = initializers for class objects in dwarf_edit.
authorMark Wielaard <mjw@redhat.com>
Wed, 1 Dec 2010 09:42:35 +0000 (10:42 +0100)
committerMark Wielaard <mjw@redhat.com>
Wed, 1 Dec 2010 09:42:35 +0000 (10:42 +0100)
libdw/c++/dwarf_edit

index 362ffb6682521926729861877472a3503638f242..e7ed54e12fe6db7f350621b933d4d60974b119fd 100644 (file)
@@ -167,9 +167,9 @@ namespace elfutils
        try
          {
            _m_tag = die.tag ();
-           attributes_type t_attrs = attributes_type (die.attributes (), arg);
+           attributes_type t_attrs (die.attributes (), arg);
            _m_attributes.swap (t_attrs);
-           children_type t_children = children_type (die.children (), arg);
+           children_type t_children (die.children (), arg);
            _m_children.swap (t_children);
          }
        catch (...)