From fec2950f2a54abf9db193af2dd9b61fc1629d9e2 Mon Sep 17 00:00:00 2001 From: Joseph Schuchart Date: Fri, 12 Apr 2024 01:14:04 -0400 Subject: [PATCH] Add override keyword to fence and make_executable The hip compiler complains about the override keyword missing. Signed-off-by: Joseph Schuchart --- ttg/ttg/tt.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ttg/ttg/tt.h b/ttg/ttg/tt.h index 7024776aa..ec7eff6d8 100644 --- a/ttg/ttg/tt.h +++ b/ttg/ttg/tt.h @@ -96,9 +96,9 @@ namespace ttg { ttg::World get_world() const override final { return tts[0]->get_world(); } - void fence() { tts[0]->fence(); } + void fence() override { tts[0]->fence(); } - void make_executable() { + void make_executable() override { for (auto &op : tts) op->make_executable(); }