Skip to content

Commit e393d45

Browse files
committed
Fixed an error introduced in commit 83c8fef.
1 parent ce3d659 commit e393d45

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/TiledArray/dist_eval/array_eval.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,9 @@ namespace TiledArray {
200200
/// This function handles the cleanup for tiles that are not needed in
201201
/// subsequent computation.
202202
/// \param i The index of the tile
203-
virtual void discard_tile(size_type i) const { }
203+
virtual void discard_tile(size_type) const {
204+
const_cast<ArrayEvalImpl_*>(this)->notify();
205+
}
204206

205207
private:
206208

0 commit comments

Comments
 (0)