Commented out strict match to make work - revisit !

release/4.3a0
dellaert 2014-11-30 21:54:10 +01:00
parent 0dcd102f5e
commit 294c7bd53b
1 changed files with 2 additions and 2 deletions

View File

@ -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 {