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:
fa6ac9f
)
TEOFException must publicly inherit TTransportException
author
Mark Slee
<mcslee@apache.org>
Mon, 7 May 2007 22:54:18 +0000
(22:54 +0000)
committer
Mark Slee
<mcslee@apache.org>
Mon, 7 May 2007 22:54:18 +0000
(22:54 +0000)
Reviewed By: boz
Test Plan: Queuemap
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665105
13f79535
-47bb-0310-9956-
ffa450edef68
lib/cpp/src/transport/TFileTransport.h
patch
|
blob
|
history
diff --git
a/lib/cpp/src/transport/TFileTransport.h
b/lib/cpp/src/transport/TFileTransport.h
index
24c0c66
..
03b0cf3
100644
(file)
--- a/
lib/cpp/src/transport/TFileTransport.h
+++ b/
lib/cpp/src/transport/TFileTransport.h
@@
-362,7
+362,7
@@
class TFileTransport : public TFileReaderTransport,
};
// Exception thrown when EOF is hit
-
class TEOFException :
TTransportException {
+
class TEOFException : public
TTransportException {
public:
TEOFException():
TTransportException(TTransportException::END_OF_FILE) {};