diff options
-rw-r--r-- | src/PolySetEvaluator.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PolySetEvaluator.cc b/src/PolySetEvaluator.cc index e0fcf68..537dc9d 100644 --- a/src/PolySetEvaluator.cc +++ b/src/PolySetEvaluator.cc @@ -19,7 +19,7 @@ */ shared_ptr<PolySet> PolySetEvaluator::getPolySet(const AbstractNode &node, bool cache) { - const std::string &cacheid = this->tree.getIdString(node); + std::string cacheid = this->tree.getIdString(node); if (PolySetCache::instance()->contains(cacheid)) { #ifdef DEBUG |