From 8eb285ac4ec3a34b29ebf20fde0e28cc647d940f Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Fri, 31 Jul 2009 13:29:18 -0700 Subject: Drop a couple of unnecessary std:: qualifiers * staptree.cxx (target_symbol::print): Drop std:: from parameter o. (cast_op::print): Ditto. --- staptree.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'staptree.cxx') diff --git a/staptree.cxx b/staptree.cxx index 9e2ca8da..b14a5c44 100644 --- a/staptree.cxx +++ b/staptree.cxx @@ -259,7 +259,7 @@ void symbol::print (ostream& o) const } -void target_symbol::print (std::ostream& o) const +void target_symbol::print (ostream& o) const { if (addressof) o << "&"; @@ -279,7 +279,7 @@ void target_symbol::print (std::ostream& o) const } -void cast_op::print (std::ostream& o) const +void cast_op::print (ostream& o) const { if (addressof) o << "&"; -- cgit