Remove superfluous semicolons
This commit is contained in:
parent
abfd630c6d
commit
fd6c0255a2
8 changed files with 15 additions and 15 deletions
|
|
@ -18,7 +18,7 @@ typedef int (*JSCIntializer)(JSGlobalContextRef context, JSObjectRef *module);
|
|||
|
||||
public:
|
||||
|
||||
JSCShell() { context = 0; };
|
||||
JSCShell() { context = 0; }
|
||||
|
||||
virtual ~JSCShell();
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue