+2010-08-20 Mark Wielaard <mjw@redhat.com>
+
+ * c++/dwarf_data (dwarf_data::directory_table::directory_table):
+ Cleaner way of handling first push_back.
+
2010-08-19 Mark Wielaard <mjw@redhat.com>
* c++/dwarf_data (dwarf_data::directory_table::directory_table):
This is not encoded in the .debug_line table, but in
the DW_AT_comp_dir attribute of the referring CU. */
typename table::const_iterator first = other.begin ();
- _base::push_back (*first != NULL ? std::string (*first) : "");
+ _base::push_back (*first ?: "");
_base::insert (_base::end (), ++first, other.end ());
}