Thrift: Making TProcessor::process(io) non-virtual again, since my last change which...
authorJames Wang <jwang@apache.org>
Wed, 28 Mar 2007 22:43:57 +0000 (22:43 +0000)
committerJames Wang <jwang@apache.org>
Wed, 28 Mar 2007 22:43:57 +0000 (22:43 +0000)
Reviewed by: Karl

git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665068 13f79535-47bb-0310-9956-ffa450edef68

lib/cpp/src/TProcessor.h

index ac77da3..affbe81 100644 (file)
@@ -28,7 +28,7 @@ class TProcessor {
   virtual bool process(boost::shared_ptr<protocol::TProtocol> in,
                        boost::shared_ptr<protocol::TProtocol> out) = 0;
 
-  virtual bool process(boost::shared_ptr<facebook::thrift::protocol::TProtocol> io) {
+  bool process(boost::shared_ptr<facebook::thrift::protocol::TProtocol> io) {
     return process(io, io);
   }