Skip to content

Commit

Permalink
Linting corrections in string_refinement
Browse files Browse the repository at this point in the history
  • Loading branch information
romainbrenguier committed Mar 14, 2018
1 parent 05a3426 commit a2fab10
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/solvers/refinement/string_refinement.cpp
Expand Up @@ -1862,7 +1862,7 @@ static exprt compute_inverse_function(
return sum_over_map(elems, f.type(), neg);
}

class find_qvar_visitort: public const_expr_visitort
class find_qvar_visitort : public const_expr_visitort
{
private:
const exprt &qvar_;
Expand Down
9 changes: 5 additions & 4 deletions src/solvers/refinement/string_refinement.h
Expand Up @@ -44,10 +44,11 @@ class string_refinementt final: public bv_refinementt
};
public:
/// string_refinementt constructor arguments
struct infot:
public bv_refinementt::infot,
public string_constraint_generatort::infot,
public configt { };
struct infot : public bv_refinementt::infot,
public string_constraint_generatort::infot,
public configt
{
};

explicit string_refinementt(const infot &);

Expand Down

0 comments on commit a2fab10

Please sign in to comment.