From b84f676946941df6f7e8476d77d1db0cbe7736c5 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Fri, 20 Apr 2007 02:14:53 +0000 Subject: Did some optimization and memory cleanup --- transform.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'transform.h') diff --git a/transform.h b/transform.h index 74e770b2..e98c53a3 100644 --- a/transform.h +++ b/transform.h @@ -113,7 +113,7 @@ class select_transform : public transform_t xml::xpath_t xpath; public: - select_transform(const std::string& selection_path) { + select_transform(const string& selection_path) { xpath.parse(selection_path); } virtual ~select_transform() { @@ -127,7 +127,7 @@ class select_transform : public transform_t class remove_transform : public select_transform { public: - remove_transform(const std::string& selection_path) + remove_transform(const string& selection_path) : select_transform(selection_path) {} virtual void execute(xml::document_t * document); -- cgit v1.2.3