From dc0c5f9153c17941453acb305e63f6ded5bcfb4b Mon Sep 17 00:00:00 2001 From: Tim <43156029+AtlantaPepsi@users.noreply.github.com> Date: Wed, 30 Apr 2025 13:29:13 -0400 Subject: [PATCH] minor fix for empty scope (group) (#1666) --- src/misc/recorder.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/misc/recorder.cc b/src/misc/recorder.cc index 9cb457c3af..08555989cd 100644 --- a/src/misc/recorder.cc +++ b/src/misc/recorder.cc @@ -152,6 +152,7 @@ void Recorder::write(const rcclApiCall &call) outputFile << std::endl; indent(2 + 2 * depth, outputFile); outputFile << "}"; + lastcall = call.type; return ; }