# # patch "ChangeLog" # from [c1a0e071ee0e6cb05c0886ebdd5262fedebfea29] # to [c4f23215a4fc883915ab92abda0b181ba59eb714] # # patch "app_state.cc" # from [7059471c5febbb78676ba5b2e7e432ce3fe39977] # to [1e2cfd4af8c4ccc2b721c758469659dc3d7f4131] # --- ChangeLog +++ ChangeLog @@ -1,3 +1,9 @@ +2005-06-17 Richard Levitte + + * app_state.cc (app_state::app_state()): Avoid a gcc warning by + having the class members initialised in the same order they are + defined in the class. + 2005-06-16 Nathaniel Smith * std_hooks.lua (ignore_file): Add Cons/SCons cache files to --- app_state.cc +++ app_state.cc @@ -31,7 +31,7 @@ app_state::app_state() : branch_name(""), db(""), stdhooks(true), rcfiles(true), diffs(false), - search_root("/"), depth(-1), last(-1), verbose(false) + verbose(false), search_root("/"), depth(-1), last(-1) { db.set_app(this); }