mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-23 16:09:47 +00:00
(glslang) Silence warning
This commit is contained in:
parent
add4a1e8a0
commit
e3b82184a7
@ -323,6 +323,9 @@ TFunction::TFunction(const TFunction& copyOf) : TSymbol(copyOf)
|
||||
{
|
||||
for (unsigned int i = 0; i < copyOf.parameters.size(); ++i) {
|
||||
TParameter param;
|
||||
param.name = NULL;
|
||||
param.type = NULL;
|
||||
param.defaultValue = NULL;
|
||||
parameters.push_back(param);
|
||||
parameters.back().copyParam(copyOf.parameters[i]);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user