From 57e6a38f2aa52495c3ac1bef7fae252aac3a8e22 Mon Sep 17 00:00:00 2001 From: David Neto Date: Wed, 3 Feb 2021 14:14:11 -0500 Subject: [PATCH] Remove useless semicolon The extra semicolon causes a build failure if warnings are turned up high, and warnings-as-errors is on. (-Werror=extra-semi) --- glslang/MachineIndependent/localintermediate.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glslang/MachineIndependent/localintermediate.h b/glslang/MachineIndependent/localintermediate.h index 84d19d4..8550ad0 100644 --- a/glslang/MachineIndependent/localintermediate.h +++ b/glslang/MachineIndependent/localintermediate.h @@ -864,7 +864,7 @@ public: return true; } return false; - }; + } void addToCallGraph(TInfoSink&, const TString& caller, const TString& callee); void merge(TInfoSink&, TIntermediate&); -- 2.7.4