You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4cxx-dev@logging.apache.org by ca...@apache.org on 2007/11/12 21:57:05 UTC

svn commit: r594295 - /logging/log4cxx/trunk/src/main/include/log4cxx/stream.h

Author: carnold
Date: Mon Nov 12 12:57:04 2007
New Revision: 594295

URL: http://svn.apache.org/viewvc?rev=594295&view=rev
Log:
LOGCXX-18: Hide copy constructor and assignment for logstream

Modified:
    logging/log4cxx/trunk/src/main/include/log4cxx/stream.h

Modified: logging/log4cxx/trunk/src/main/include/log4cxx/stream.h
URL: http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/stream.h?rev=594295&r1=594294&r2=594295&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/stream.h (original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/stream.h Mon Nov 12 12:57:04 2007
@@ -306,6 +306,8 @@
               
             
         private:
+            logstream(const logstream&);
+            logstream& operator=(const logstream&);        
             std::basic_stringstream<Ch>* stream;
              
         };
@@ -415,6 +417,8 @@
               
             
         private:
+            wlogstream(const wlogstream&);
+            wlogstream& operator=(const wlogstream&);
             std::basic_stringstream<Ch>* stream;
              
         };