summaryrefslogtreecommitdiffhomepage
path: root/flowgraph/storage.cpp
blob: f78a65d6f8bf20ee7748e1eb6dc9462ff63b0ae9 (plain)
1
2
3
4
5
6
7
8
#include "storage.h"

using namespace std::string_literals;

FlowGraph::TemporaryStorage::TemporaryStorage(LocalScope& scope):
 m_name("__local_"s + std::to_string(scope.getNewIndex()))
{}