Vuo  2.0.0
VuoCompilerConstantStringCache.cc
Go to the documentation of this file.
1 
12 
18 Constant * VuoCompilerConstantStringCache::get(Module *module, const string &s)
19 {
20  map<string, Constant *>::iterator iter = constantStrings.find(s);
21  if (iter != constantStrings.end())
22  return iter->second;
23 
25  constantStrings[s] = c;
26  return c;
27 }
28 
33 {
34  constantStrings.clear();
35 }