diff options
author | Kim van der Riet <kpvdr@apache.org> | 2006-12-19 20:32:54 +0000 |
---|---|---|
committer | Kim van der Riet <kpvdr@apache.org> | 2006-12-19 20:32:54 +0000 |
commit | 956a3ea3f5ea2524e4767ad3b190cacdf5dbb684 (patch) | |
tree | 6328af6ff078d022854415c5f3b70d48b0603214 | |
parent | fca0509a9d4da37389ff2c08e171b36bfe5f2a34 (diff) | |
download | qpid-python-956a3ea3f5ea2524e4767ad3b190cacdf5dbb684.tar.gz |
[For Andrew Stitcher] Made the generator generate non-virtual inheritance; it doesn't create a noticeable speed up in itself, but it's not needed where it's used.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@488801 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | gentools/templ.cpp/AMQP_ClientProxy.h.tmpl | 2 | ||||
-rw-r--r-- | gentools/templ.cpp/AMQP_ServerProxy.h.tmpl | 2 | ||||
-rw-r--r-- | gentools/templ.cpp/MethodBodyClass.h.tmpl | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/gentools/templ.cpp/AMQP_ClientProxy.h.tmpl b/gentools/templ.cpp/AMQP_ClientProxy.h.tmpl index 62df7baf18..6773fab5c6 100644 --- a/gentools/templ.cpp/AMQP_ClientProxy.h.tmpl +++ b/gentools/templ.cpp/AMQP_ClientProxy.h.tmpl @@ -36,7 +36,7 @@ namespace qpid { namespace framing { -class AMQP_ClientProxy : virtual public AMQP_ClientOperations +class AMQP_ClientProxy : public AMQP_ClientOperations { private: OutputHandler* out; diff --git a/gentools/templ.cpp/AMQP_ServerProxy.h.tmpl b/gentools/templ.cpp/AMQP_ServerProxy.h.tmpl index 9275c64590..5f808982fa 100644 --- a/gentools/templ.cpp/AMQP_ServerProxy.h.tmpl +++ b/gentools/templ.cpp/AMQP_ServerProxy.h.tmpl @@ -36,7 +36,7 @@ namespace qpid { namespace framing { -class AMQP_ServerProxy : virtual public AMQP_ServerOperations +class AMQP_ServerProxy : public AMQP_ServerOperations { private: OutputHandler* out; diff --git a/gentools/templ.cpp/MethodBodyClass.h.tmpl b/gentools/templ.cpp/MethodBodyClass.h.tmpl index be9fb82e31..50c8feebac 100644 --- a/gentools/templ.cpp/MethodBodyClass.h.tmpl +++ b/gentools/templ.cpp/MethodBodyClass.h.tmpl @@ -43,7 +43,7 @@ namespace framing { ${version_namespace_start} -class ${CLASS}${METHOD}Body : virtual public AMQMethodBody +class ${CLASS}${METHOD}Body : public AMQMethodBody { // Method field declarations |