Skip to content

Commit e5e5e9e

Browse files
author
Joel Allred
committed
remove unneeded NOLINT
1 parent 9449ac7 commit e5e5e9e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/solvers/refinement/string_constraint_generator_concat.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ exprt string_constraint_generatort::add_axioms_for_concat_substr(
5050
length_constraint_for_concat_substr(res, s1, s2, start_index, end_index));
5151

5252
// Axiom 2.
53-
constraints.push_back([&] { // NOLINT
53+
constraints.push_back([&] {
5454
const symbol_exprt idx =
5555
fresh_univ_index("QA_index_concat", res.length().type());
5656
return string_constraintt(
5757
idx, zero_if_negative(s1.length()), equal_exprt(s1[idx], res[idx]));
5858
}());
5959

6060
// Axiom 3.
61-
constraints.push_back([&] { // NOLINT
61+
constraints.push_back([&] {
6262
const symbol_exprt idx2 =
6363
fresh_univ_index("QA_index_concat2", res.length().type());
6464
const equal_exprt res_eq(

0 commit comments

Comments
 (0)