# # # patch "ChangeLog" # from [22ec9aa88fd9539fb9b966eaefaee26986b7dfee] # to [6fc15fb5b443d3d7e92236cc7aea2689f38f1d81] # # patch "vocab.hh" # from [7006a57c4c46903491fa38bcbbb86fee078dec10] # to [cd8bcbabc1b8b4d26809c8c90beee68289902f00] # ============================================================ --- ChangeLog 22ec9aa88fd9539fb9b966eaefaee26986b7dfee +++ ChangeLog 6fc15fb5b443d3d7e92236cc7aea2689f38f1d81 @@ -1,3 +1,8 @@ +2006-04-29 Matt Johnston + + * vocab.hh: removing superfluous string("") constructor shrinks mtn + binary by >100kB (from Benoît Dejean) + 2006-04-28 Alex Queiroz * po/pt_BR.po: Translated more strings. ============================================================ --- vocab.hh 7006a57c4c46903491fa38bcbbb86fee078dec10 +++ vocab.hh cd8bcbabc1b8b4d26809c8c90beee68289902f00 @@ -93,7 +93,7 @@ std::string s; \ public: \ bool ok; \ - ty() : s(""), ok(false) {} \ + ty() : ok(false) {} \ ty(std::string const & str); \ ty(ty const & other); \ std::string const & operator()() const \