free symbol names after writing codeimage

This commit is contained in:
Joshua Warner
2012-05-02 10:22:44 -06:00
parent a09736e749
commit 5724baad41
2 changed files with 11 additions and 4 deletions

View File

@ -44,6 +44,10 @@ public:
size_t length;
String(const char* text);
inline String(const char* text, size_t length):
text(text),
length(length) {}
};
class SymbolInfo {