aboutsummaryrefslogtreecommitdiffstats
path: root/libshiboken
diff options
context:
space:
mode:
authorHugo Lima <hugo.lima@openbossa.org>2010-02-18 17:26:29 -0200
committerHugo Lima <hugo.lima@openbossa.org>2010-02-18 18:01:47 -0200
commit51af8146a5c3b456fec32e1f62b17c178af390cd (patch)
treefbc35ce6b9a602ad546d7f83925aeb19b4824e98 /libshiboken
parentb656da109ac75d18854c37b7d1d732addb1e9612 (diff)
Converter<T> doesn't inherits ConverterBase, to avoid uneeded template instanciations.
Diffstat (limited to 'libshiboken')
-rw-r--r--libshiboken/conversions.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libshiboken/conversions.h b/libshiboken/conversions.h
index fd8358e83..be27fd1d9 100644
--- a/libshiboken/conversions.h
+++ b/libshiboken/conversions.h
@@ -145,7 +145,7 @@ struct ConverterBase<T*> : ConverterBase<T>
};
// Pointer Conversions
-template <typename T> struct Converter : ConverterBase<T> {};
+template <typename T> struct Converter {};
template <typename T>
struct Converter<T*> : Converter<T>