chore(library/local_context): style
This commit is contained in:
parent
554cef1d36
commit
d546671849
2 changed files with 2 additions and 2 deletions
|
|
@ -337,7 +337,7 @@ bool local_context::well_formed(expr const & e) const {
|
|||
return ok;
|
||||
}
|
||||
|
||||
format local_context::pp(formatter const & fmt, std::function<bool(local_decl const &)> const & pred) const {
|
||||
format local_context::pp(formatter const & fmt, std::function<bool(local_decl const &)> const & pred) const { // NOLINT
|
||||
options const & opts = fmt.get_options();
|
||||
unsigned indent = get_pp_indent(opts);
|
||||
unsigned max_hs = get_pp_goal_max_hyps(opts);
|
||||
|
|
|
|||
|
|
@ -177,7 +177,7 @@ public:
|
|||
That is, all local_decl references in \c e are defined in this context. */
|
||||
bool well_formed(expr const & e) const;
|
||||
|
||||
format pp(formatter const & fmt, std::function<bool(local_decl const &)> const & pred) const;
|
||||
format pp(formatter const & fmt, std::function<bool(local_decl const &)> const & pred) const; // NOLINT
|
||||
format pp(formatter const & fmt) const { return pp(fmt, [](local_decl const &) { return true; }); }
|
||||
|
||||
/** \brief Replaced assigned metavariables with their values.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue