glslang tear down: Include deleting the keyword map in tear down. From johnk and sawato shusaku (shusaku.sawato@dmprof.com).
git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@31115 e7fa87d3-cd2b-0410-9028-fcbf551c1848
This commit is contained in:
parent
6add20a835
commit
f75276ba5c
4 changed files with 35 additions and 23 deletions
|
|
@ -514,6 +514,14 @@ void TScanContext::fillInKeywordMap()
|
|||
ReservedSet->insert("using");
|
||||
}
|
||||
|
||||
void TScanContext::deleteKeywordMap()
|
||||
{
|
||||
delete KeywordMap;
|
||||
KeywordMap = 0;
|
||||
delete ReservedSet;
|
||||
ReservedSet = 0;
|
||||
}
|
||||
|
||||
int TScanContext::tokenize(TPpContext* pp, TParserToken& token)
|
||||
{
|
||||
do {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue