Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
WCCL
Manage
Activity
Members
Labels
Plan
Issues
4
Issue boards
Milestones
Wiki
Redmine
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Analysers
WCCL
Commits
4a9bf953
Commit
4a9bf953
authored
13 years ago
by
ilor
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of nlp.pwr.wroc.pl:wccl
parents
f91daedf
83aaf7e1
Branches
Branches containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libwccl/ops/match/actions/unmarkmatch.cpp
+1
-0
1 addition, 0 deletions
libwccl/ops/match/actions/unmarkmatch.cpp
libwccl/ops/tagactions/unmark.cpp
+1
-0
1 addition, 0 deletions
libwccl/ops/tagactions/unmark.cpp
with
2 additions
and
0 deletions
libwccl/ops/match/actions/unmarkmatch.cpp
+
1
−
0
View file @
4a9bf953
...
@@ -33,6 +33,7 @@ void UnmarkMatch::execute(const ActionExecContext& context) const
...
@@ -33,6 +33,7 @@ void UnmarkMatch::execute(const ActionExecContext& context) const
for
(
int
i
=
0
;
i
<
channel
.
size
();
++
i
)
{
for
(
int
i
=
0
;
i
<
channel
.
size
();
++
i
)
{
if
(
channel
.
segments
()[
i
]
==
segment_idx
)
{
if
(
channel
.
segments
()[
i
]
==
segment_idx
)
{
channel
.
set_segment_at
(
i
,
0
);
channel
.
set_segment_at
(
i
,
0
);
channel
.
set_head_at
(
i
,
false
);
}
}
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
libwccl/ops/tagactions/unmark.cpp
+
1
−
0
View file @
4a9bf953
...
@@ -37,6 +37,7 @@ Bool Unmark::execute(const ActionExecContext& context) const
...
@@ -37,6 +37,7 @@ Bool Unmark::execute(const ActionExecContext& context) const
for
(
int
i
=
0
;
i
<
channel
.
size
();
++
i
)
{
for
(
int
i
=
0
;
i
<
channel
.
size
();
++
i
)
{
if
(
channel
.
segments
()[
i
]
==
segment_idx
)
{
if
(
channel
.
segments
()[
i
]
==
segment_idx
)
{
channel
.
set_segment_at
(
i
,
0
);
channel
.
set_segment_at
(
i
,
0
);
channel
.
set_head_at
(
i
,
false
);
}
}
}
}
return
Bool
(
true
);
return
Bool
(
true
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment