Remove superfluous semicolons

This commit is contained in:
Olly Betts 2022-02-15 14:00:12 +13:00
commit fd6c0255a2
8 changed files with 15 additions and 15 deletions

View file

@ -18,7 +18,7 @@ typedef int (*JSCIntializer)(JSGlobalContextRef context, JSObjectRef *module);
public:
JSCShell() { context = 0; };
JSCShell() { context = 0; }
virtual ~JSCShell();

View file

@ -257,7 +257,7 @@ SwigV8ReturnValue V8Shell::Require(const SwigV8Arguments &args) {
if (args.Length() != 1) {
printf("Illegal arguments for `require`");
};
}
v8::String::Utf8Value str(args[0]);
const char *cstr = V8Shell::ToCString(str);