Code Review
/
common
/
thrift.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
8f6e207
)
Thrift: Making TProcessor::process(io) non-virtual again, since my last change which...
author
James Wang
<jwang@apache.org>
Wed, 28 Mar 2007 22:43:57 +0000
(22:43 +0000)
committer
James 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
patch
|
blob
|
history
diff --git
a/lib/cpp/src/TProcessor.h
b/lib/cpp/src/TProcessor.h
index
ac77da3
..
affbe81
100644
(file)
--- a/
lib/cpp/src/TProcessor.h
+++ b/
lib/cpp/src/TProcessor.h
@@
-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);
}