Skip to content

Commit 5fb8a94

Browse files
pierremoreauAlexeySotkin
authored andcommitted
Remove unneeded semi-colon for TypeVisitor constructor
1 parent 20e99e2 commit 5fb8a94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/SPIRV/Mangler/ParameterType.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ struct UserDefinedType : public ParamType {
419419
/// dispatch the correct visit method according to its dynamic type.
420420
struct TypeVisitor {
421421
SPIRversion spirVer;
422-
TypeVisitor(SPIRversion ver) : spirVer(ver){};
422+
TypeVisitor(SPIRversion ver) : spirVer(ver) {}
423423
virtual ~TypeVisitor() {}
424424
virtual MangleError visit(const PrimitiveType *) = 0;
425425
virtual MangleError visit(const VectorType *) = 0;

0 commit comments

Comments
 (0)