Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
vidjil
vidjil
Commits
6406526d
Commit
6406526d
authored
Jul 06, 2016
by
Mathieu Giraud
Browse files
core/segment.cpp: json output, AlignBox::addToJson() is now 1-based
parent
11f3d530
Changes
1
Hide whitespace changes
Inline
Side-by-side
algo/core/segment.cpp
View file @
6406526d
...
...
@@ -57,13 +57,13 @@ void AlignBox::addToJson(json &seg) {
if
(
key
!=
"3"
)
// no end information for J
{
j
[
"end"
]
=
end
;
j
[
"end"
]
=
end
+
1
;
j
[
"delRight"
]
=
del_right
;
}
if
(
key
!=
"5"
)
// no start information for V
{
j
[
"start"
]
=
start
;
j
[
"start"
]
=
start
+
1
;
j
[
"delLeft"
]
=
del_left
;
}
...
...
Vidjil Team
@vidjilteam
Mentioned in issue
#1869 (closed)
·
Nov 29, 2016
Mentioned in issue
#1869 (closed)
Mentioned in issue #1869
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment