aboutsummaryrefslogtreecommitdiff
path: root/dep/ACE_wrappers/ace/IOStream.cpp
diff options
context:
space:
mode:
authormaximius <none@none>2009-10-17 16:20:24 -0700
committermaximius <none@none>2009-10-17 16:20:24 -0700
commit3f338cc1c328c7280957583b50598292cd8fb64b (patch)
treeca209c2cd024e3902b7844b3224bceff7c5bb570 /dep/ACE_wrappers/ace/IOStream.cpp
parente585187b248f48b3c6e9247b49fa07c6565d65e5 (diff)
*Massive cleanup redux.
--HG-- branch : trunk
Diffstat (limited to 'dep/ACE_wrappers/ace/IOStream.cpp')
-rw-r--r--dep/ACE_wrappers/ace/IOStream.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/dep/ACE_wrappers/ace/IOStream.cpp b/dep/ACE_wrappers/ace/IOStream.cpp
index 0b6ac17ca6f..4fc8e851212 100644
--- a/dep/ACE_wrappers/ace/IOStream.cpp
+++ b/dep/ACE_wrappers/ace/IOStream.cpp
@@ -48,7 +48,6 @@ ACE_RCSID(ace, IOStream, "$Id: IOStream.cpp 80826 2008-03-04 14:51:23Z wotte $")
// a reference to iostream. The second >> has no idea of the ACE_IOStream and
// gets invoked on iostream. Probably NOT what you wanted!
-
// In order to make all of this work the way you want, you have to do this:
class myiostream : public iostream
@@ -79,7 +78,6 @@ ACE_RCSID(ace, IOStream, "$Id: IOStream.cpp 80826 2008-03-04 14:51:23Z wotte $")
// OK
// invokes myiostream::operator>> (int&) returning myiostream&
-
foo >> i >> s;
// OK
// Because you provided operator>> (int&) in class myiostream, that