Revision: 1985
Author:
chrsc...@googlemail.com
Date: Fri Jun 21 06:03:45 2013
Log: Bugfix: Correctly match type ID.
http://code.google.com/p/insight-vmi/source/detail?r=1985
Modified:
/trunk/libinsight/typefilter.cpp
=======================================
--- /trunk/libinsight/typefilter.cpp Fri Jun 21 05:50:44 2013
+++ /trunk/libinsight/typefilter.cpp Fri Jun 21 06:03:45 2013
@@ -193,7 +193,7 @@
if (filterActive(ftTypeId)) {
const BaseType* t = type;
- while (t && !(t->id() & _typeId)) {
+ while (t && !(t->id() == _typeId)) {
if (t->type() & BaseType::trLexical)
t = dynamic_cast<const RefBaseType*>(t)->refType();
else