Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 2942cff

Browse filesBrowse files
bnoordhuisMyles Borins
authored andcommitted
src: add missing 'inline' keywords
The BaseObject constructor and destructor should not have external linkage because BaseObject is a header-only construct. Add the necessary 'inline' keywords. PR-URL: #6056 Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
1 parent 6d56009 commit 2942cff
Copy full SHA for 2942cff

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Open diff view settings
Collapse file

‎src/base-object.h‎

Copy file name to clipboardExpand all lines: src/base-object.h
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ class Environment;
99

1010
class BaseObject {
1111
public:
12-
BaseObject(Environment* env, v8::Local<v8::Object> handle);
13-
virtual ~BaseObject();
12+
inline BaseObject(Environment* env, v8::Local<v8::Object> handle);
13+
inline virtual ~BaseObject();
1414

1515
// Returns the wrapped object. Returns an empty handle when
1616
// persistent.IsEmpty() is true.

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.