git://scientific.zcu.cz
/
jra1mw.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3aca23c
)
changed base constructor call order to avoid compiler warnings
author
Michal Voců
<michal@ruk.cuni.cz>
Wed, 20 Jun 2007 08:59:37 +0000
(08:59 +0000)
committer
Michal Voců
<michal@ruk.cuni.cz>
Wed, 20 Jun 2007 08:59:37 +0000
(08:59 +0000)
org.glite.lb.logger/src-nt/Transport.H
patch
|
blob
|
blame
|
history
diff --git
a/org.glite.lb.logger/src-nt/Transport.H
b/org.glite.lb.logger/src-nt/Transport.H
index
974b8ac
..
9cfe349
100644
(file)
--- a/
org.glite.lb.logger/src-nt/Transport.H
+++ b/
org.glite.lb.logger/src-nt/Transport.H
@@
-9,11
+9,13
@@
public:
class Factory {
public:
virtual Transport *newTransport(Connection *conn) const = 0;
+
+ virtual ~Factory() = 0;
};
Transport(Connection *a_conn)
- :
conn(a_conn
),
-
ThreadPool::WorkDescription(a_conn ? a_conn->getFD() : -1
)
+ :
ThreadPool::WorkDescription(a_conn ? a_conn->getFD() : -1
),
+
conn(a_conn
)
{}
virtual ~Transport()