Skip to content

Commit

Permalink
Fix non-standard method for map
Browse files Browse the repository at this point in the history
  • Loading branch information
paoloambrosio committed Jan 24, 2010
1 parent 8ec638f commit 5acfeae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cuke.cpp
Expand Up @@ -19,7 +19,7 @@ StepManager::step_id_type StepMatchesResult::getAMatch() {
}

StepMatchesResult::match_result StepMatchesResult::getMatchResult(StepManager::step_id_type stepId) {
return matches.at(stepId);
return matches[stepId];
}

/*
Expand Down

0 comments on commit 5acfeae

Please sign in to comment.