You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by dr...@apache.org on 2010/03/09 06:20:26 UTC

svn commit: r920690 - /incubator/thrift/trunk/lib/cpp/src/transport/TSocket.h

Author: dreiss
Date: Tue Mar  9 05:20:26 2010
New Revision: 920690

URL: http://svn.apache.org/viewvc?rev=920690&view=rev
Log:
cpp: Make an implicit virtual declaration explicit

This changes nothing since it's already declared virtual in the parent,
but this is clearer.

Modified:
    incubator/thrift/trunk/lib/cpp/src/transport/TSocket.h

Modified: incubator/thrift/trunk/lib/cpp/src/transport/TSocket.h
URL: http://svn.apache.org/viewvc/incubator/thrift/trunk/lib/cpp/src/transport/TSocket.h?rev=920690&r1=920689&r2=920690&view=diff
==============================================================================
--- incubator/thrift/trunk/lib/cpp/src/transport/TSocket.h (original)
+++ incubator/thrift/trunk/lib/cpp/src/transport/TSocket.h Tue Mar  9 05:20:26 2010
@@ -86,7 +86,7 @@ class TSocket : public TTransport {
   /**
    * Shuts down communications on the socket.
    */
-  void close();
+  virtual void close();
 
   /**
    * Reads from the underlying socket.