diff options
Diffstat (limited to 'dep/ACE_wrappers/ace/IOStream.cpp')
-rw-r--r-- | dep/ACE_wrappers/ace/IOStream.cpp | 2 |
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 |