# # patch "ChangeLog" # from [0b804900fd63d2a94549afda5fbff8c17c469993] # to [7e8eeb888b8e4ba4319b9da3a85c4dc59633c02c] # # patch "change_set.cc" # from [8721281fd257c827409baf2df2ec98e7883e0710] # to [514f646e5cc061ba8bf85e92eebd65357b4c85bf] # --- ChangeLog +++ ChangeLog @@ -1,3 +1,8 @@ +2005-04-17 Nathaniel Smith + + * change_set.cc (path_item, sanity_check_path_item): Mark things + inline. + 2005-04-17 Henrik Holmboe * contrib/monotone-notify.pl: Add signal handlers. Correct some --- change_set.cc +++ change_set.cc @@ -61,11 +61,11 @@ tid parent; ptype ty; path_component name; - path_item() {} - path_item(tid p, ptype t, path_component n); - path_item(path_item const & other); - path_item const & operator=(path_item const & other); - bool operator==(path_item const & other) const; + inline path_item() {} + inline path_item(tid p, ptype t, path_component n); + inline path_item(path_item const & other); + inline path_item const & operator=(path_item const & other); + inline bool operator==(path_item const & other) const; }; @@ -506,7 +506,7 @@ } -static void +inline static void sanity_check_path_item(path_item const & pi) { }