# # patch "ChangeLog" # from [1ad5ff493c189d3c10a89a2b74be8ec2002208ca] # to [13eeff23ef10288fec29c6d8ba50a2fc37594a4b] # # 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 Olivier Andrieu * transforms.cc: fix glob_to_regexp assertions --- 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) { }