Skip to content
Permalink
Browse files
ReadView::snapshot(): Define inline
  • Loading branch information
dr-m committed Mar 6, 2018
1 parent 93d495f commit 8f361a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
@@ -195,7 +195,7 @@ class ReadView
@param[in,out] trx transaction
*/
void snapshot(trx_t *trx);
inline void snapshot(trx_t *trx);


/**
@@ -180,7 +180,7 @@ will mark their views as closed but not actually free their views.
@param[in,out] trx transaction
*/
void ReadView::snapshot(trx_t *trx)
inline void ReadView::snapshot(trx_t *trx)
{
trx_sys.snapshot_ids(trx, &m_ids, &m_low_limit_id, &m_low_limit_no);
std::sort(m_ids.begin(), m_ids.end());

0 comments on commit 8f361a8

Please sign in to comment.