Skip to content
Snippets Groups Projects
Commit b226113c authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Fix inheritance for DependencyMapper.Collector.map_common_subexpression_uncached

parent ca9a2f24
No related branches found
No related tags found
No related merge requests found
......@@ -100,7 +100,7 @@ class DependencyMapper(CSECachingMapperMixin, Collector):
if self.include_cses:
return set([expr])
else:
return super(DependencyMapper, self).map_common_subexpression(expr)
return Collector.map_common_subexpression(self, expr)
def map_slice(self, expr):
return self.combine(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment