From 254d0905827ba6129e07f53b682c6ea6de417d3d Mon Sep 17 00:00:00 2001 From: Matt Liberty Date: Mon, 27 Oct 2025 00:14:56 +0000 Subject: [PATCH] Replace deprecated isGroupPathName with isPathGroupName Signed-off-by: Matt Liberty --- search/Search.i | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/search/Search.i b/search/Search.i index 1d0efdd6..205add9b 100644 --- a/search/Search.i +++ b/search/Search.i @@ -258,7 +258,7 @@ endpoint_slack(const Pin *pin, { Sta *sta = Sta::sta(); sta->ensureLibLinked(); - if (sta->isGroupPathName(path_group_name)) { + if (sta->isPathGroupName(path_group_name)) { Slack slack = sta->endpointSlack(pin, std::string(path_group_name), min_max); return sta->units()->timeUnit()->staToUser(slack); }