1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-24 11:56:38 +02:00

core: fix some styles

This commit is contained in:
Sébastien Helleu
2018-01-07 09:11:45 +01:00
parent 91f792416b
commit 7ee88fb46c
58 changed files with 283 additions and 282 deletions
+11 -11
View File
@@ -27,21 +27,21 @@
class WeechatJsV8
{
public:
WeechatJsV8(void);
~WeechatJsV8(void);
WeechatJsV8 (void);
~WeechatJsV8 (void);
bool load(v8::Handle<v8::String>);
bool load(const char *);
bool load (v8::Handle<v8::String>);
bool load (const char *);
bool execScript(void);
bool functionExists(const char *);
v8::Handle<v8::Value> execFunction(const char *,
int argc, v8::Handle<v8::Value> *);
bool execScript (void);
bool functionExists (const char *);
v8::Handle<v8::Value> execFunction (const char *,
int argc, v8::Handle<v8::Value> *);
void addGlobal(v8::Handle<v8::String>, v8::Handle<v8::Template>);
void addGlobal(const char *, v8::Handle<v8::Template>);
void addGlobal (v8::Handle<v8::String>, v8::Handle<v8::Template>);
void addGlobal (const char *, v8::Handle<v8::Template>);
void loadLibs(void);
void loadLibs (void);
private:
v8::HandleScope handle_scope;