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 3d7fd9a

Browse filesBrowse files
targosAli Sheikh
authored andcommitted
src: replace usage of deprecated GetEndColumn
PR-URL: #5159 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
1 parent d45045f commit 3d7fd9a
Copy full SHA for 3d7fd9a

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/node.cc‎

Copy file name to clipboardExpand all lines: src/node.cc
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1470,8 +1470,8 @@ void AppendExceptionLine(Environment* env,
14701470
// sourceline to 78 characters, and we end up not providing very much
14711471
// useful debugging info to the user if we remove 62 characters.
14721472

1473-
int start = message->GetStartColumn();
1474-
int end = message->GetEndColumn();
1473+
int start = message->GetStartColumn(env->context()).FromJust();
1474+
int end = message->GetEndColumn(env->context()).FromJust();
14751475

14761476
char arrow[1024];
14771477
int max_off = sizeof(arrow) - 2;

0 commit comments

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