Revert "Fix result of merge."

This reverts commit e0793d386517f4ff9c0267830d558f91c75263aa.

In idiomatic C++, accessor functions should not discard qualifiers.
This commit is contained in:
Marko Mäkelä 2020-07-02 06:04:42 +03:00
parent 90d1e58ed0
commit c43a666662

View File

@ -3408,7 +3408,11 @@ public:
inline bool is_error() const { return m_stmt_da->is_error(); }
/// Returns Diagnostics-area for the current statement.
Diagnostics_area *get_stmt_da() const
Diagnostics_area *get_stmt_da()
{ return m_stmt_da; }
/// Returns Diagnostics-area for the current statement.
const Diagnostics_area *get_stmt_da() const
{ return m_stmt_da; }
/// Sets Diagnostics-area for the current statement.