From 294c7bd53bae62c0f167432efb64494ff2c8c57e Mon Sep 17 00:00:00 2001 From: dellaert Date: Sun, 30 Nov 2014 21:54:10 +0100 Subject: [PATCH] Commented out strict match to make work - revisit ! --- wrap/Qualified.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wrap/Qualified.h b/wrap/Qualified.h index 72d1b1c4f..50805ec50 100644 --- a/wrap/Qualified.h +++ b/wrap/Qualified.h @@ -84,7 +84,7 @@ public: // Qualified is 'abused' as template argument name as well // this function checks whether *this matches with templateArg bool match(const std::string& templateArg) const { - return (name_ == templateArg && namespaces_.empty() && category == CLASS); + return (name_ == templateArg && namespaces_.empty());//TODO && category == CLASS); } void rename(const Qualified& q) { @@ -220,7 +220,7 @@ public: [assign_a(self.result_.name_)] // [assign_a(self.result_.category, CLASS)]; - type_p = void_p | my_basisType_p | my_eigenType_p | class_p; + type_p = void_p | my_basisType_p | class_p | my_eigenType_p; } Rule const& start() const {