[glslang] Strip trailing whitespace

There are many other files in the repo that have trailing whitespace
but this PR only cleans `glslang/SPIRV` and `glslang/Standalone`.
This commit is contained in:
Allan MacKinnon 2023-05-22 11:44:18 -04:00 committed by arcady-lunarg
parent e06bd35fea
commit a5bf69936d
11 changed files with 41 additions and 41 deletions

View file

@ -197,7 +197,7 @@ public:
// Parameterize a set of enumerants that form an enum
class EnumDefinition : public EnumParameters {
public:
EnumDefinition() :
EnumDefinition() :
ceiling(0), bitmask(false), getName(nullptr), enumParams(nullptr), operandParams(nullptr) { }
void set(int ceil, const char* (*name)(int), EnumParameters* ep, bool mask = false)
{