summaryrefslogtreecommitdiff
path: root/include/phat/representations/abstract_pivot_column.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/phat/representations/abstract_pivot_column.h')
-rw-r--r--include/phat/representations/abstract_pivot_column.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/phat/representations/abstract_pivot_column.h b/include/phat/representations/abstract_pivot_column.h
index fbee368..e16d7a5 100644
--- a/include/phat/representations/abstract_pivot_column.h
+++ b/include/phat/representations/abstract_pivot_column.h
@@ -94,6 +94,8 @@ namespace phat {
void _set_col( index idx, const column& col ) { is_pivot_col( idx ) ? get_pivot_col().set_col( col ) : Base::_set_col( idx, col ); }
void _remove_max( index idx ) { is_pivot_col( idx ) ? get_pivot_col().remove_max() : Base::_remove_max( idx ); }
+
+ void finalize( index idx ) { Base::_finalize( idx ); }
};
}