From f28bdfca48e84bda8fc33fed282ddb4916603e4a Mon Sep 17 00:00:00 2001 From: Thierry Treyer Date: Thu, 15 Jun 2023 06:41:39 -0700 Subject: [PATCH] Fix TypeHierarchy's type --- tools/OIP.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/OIP.cpp b/tools/OIP.cpp index b038642..5b4b32d 100644 --- a/tools/OIP.cpp +++ b/tools/OIP.cpp @@ -322,8 +322,7 @@ int main(int argc, char* argv[]) { cacheArchive >> globalDescs; printGlobalDescs(globalDescs); } else if (cachePath.extension() == ".th") { - std::pair, TypeHierarchy> - typeHierarchy; + std::pair typeHierarchy; cacheArchive >> typeHierarchy; printTypeHierarchy(typeHierarchy.second); } else if (cachePath.extension() == ".pd") {