diff options
Diffstat (limited to 'contrib')
| -rw-r--r-- | contrib/foreach.hpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/foreach.hpp b/contrib/foreach.hpp index efe6d6d..2abec19 100644 --- a/contrib/foreach.hpp +++ b/contrib/foreach.hpp @@ -68,7 +68,7 @@ namespace pugi  		}  	}; -	xml_node_children_adapter children(const pugi::xml_node& node) +	inline xml_node_children_adapter children(const pugi::xml_node& node)  	{  		xml_node_children_adapter result = {node};  		return result; @@ -92,7 +92,7 @@ namespace pugi  		}  	}; -	xml_node_attribute_adapter attributes(const pugi::xml_node& node) +	inline xml_node_attribute_adapter attributes(const pugi::xml_node& node)  	{  		xml_node_attribute_adapter result = {node};  		return result;  | 
