summaryrefslogtreecommitdiffstats
path: root/staptree.cxx
diff options
context:
space:
mode:
authorJosh Stone <jistone@redhat.com>2009-07-31 13:29:18 -0700
committerJosh Stone <jistone@redhat.com>2009-07-31 17:08:07 -0700
commit8eb285ac4ec3a34b29ebf20fde0e28cc647d940f (patch)
tree66947f6850277db5eea2ef8cbea70c4fed2839c9 /staptree.cxx
parent76ff718a26fa2b73be43ca8d99fb091b686b1d85 (diff)
downloadsystemtap-steved-8eb285ac4ec3a34b29ebf20fde0e28cc647d940f.tar.gz
systemtap-steved-8eb285ac4ec3a34b29ebf20fde0e28cc647d940f.tar.xz
systemtap-steved-8eb285ac4ec3a34b29ebf20fde0e28cc647d940f.zip
Drop a couple of unnecessary std:: qualifiers
* staptree.cxx (target_symbol::print): Drop std:: from parameter o. (cast_op::print): Ditto.
Diffstat (limited to 'staptree.cxx')
-rw-r--r--staptree.cxx4
1 files changed, 2 insertions, 2 deletions
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 << "&";