Skip to content

Commit

Permalink
fixed srl bug
Browse files Browse the repository at this point in the history
  • Loading branch information
jiangfeng1124 committed Nov 29, 2013
1 parent c1c7e53 commit 3bc8b18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/srl/SRLBaselineExt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ void SRLBaselineExt::ExtractPrgFeatures(vector< vector<string> >& vecPrgFeatures
if (feature_empty_flag)
{
feature_values.clear();
for (size_t row = 1; row <= row_count; ++row)
for (size_t row = 0; row <= row_count; ++row)
{
feature_values.push_back("");
}
Expand Down

0 comments on commit 3bc8b18

Please sign in to comment.