fix(kernel/justification): missing 'const'
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
52ff29a6f7
commit
cdc41244ae
2 changed files with 2 additions and 2 deletions
|
@ -194,7 +194,7 @@ optional<expr> justification::get_main_expr() const {
|
|||
}
|
||||
}
|
||||
}
|
||||
format justification::pp(formatter const & fmt, options const & opts, pos_info_provider const * p, substitution const & s) {
|
||||
format justification::pp(formatter const & fmt, options const & opts, pos_info_provider const * p, substitution const & s) const {
|
||||
justification_cell * it = m_ptr;
|
||||
while (true) {
|
||||
if (!it)
|
||||
|
|
|
@ -61,7 +61,7 @@ public:
|
|||
\brief Convert this justification into a format object. This method is usually used to report
|
||||
"error" messages to users.
|
||||
*/
|
||||
format pp(formatter const & fmt, options const & opts, pos_info_provider const * p, substitution const & s);
|
||||
format pp(formatter const & fmt, options const & opts, pos_info_provider const * p, substitution const & s) const;
|
||||
/**
|
||||
\brief Return an expression associated with the justification object.
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue