chore(frontends/lean/prenum,library/tactic/rewrite_tactic): fix style

This commit is contained in:
Leonardo de Moura 2015-10-13 16:30:37 -07:00
parent 29763190ad
commit cd144993c0
2 changed files with 2 additions and 1 deletions

View file

@ -4,6 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE.
Author: Leonardo de Moura
*/
#include <string>
#include "library/kernel_serializer.h"
namespace lean {

View file

@ -1598,7 +1598,7 @@ class rewrite_fn {
type_checker_ptr mk_tc(bool full) {
auto aux_pred = full ? mk_irreducible_pred(m_env) : mk_not_quasireducible_pred(m_env);
return mk_type_checker(m_env, m_ngen.mk_child(),[=](name const & n) {
return mk_type_checker(m_env, m_ngen.mk_child(), [=](name const & n) {
return aux_pred(n) && !is_numeral_const_name(n);
});
}