<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">diff --git Source/cmInstallRuntimeDependencySet.cxx Source/cmInstallRuntimeDependencySet.cxx
index 0cef49a..5f826f3 100644
--- Source/cmInstallRuntimeDependencySet.cxx
+++ Source/cmInstallRuntimeDependencySet.cxx
@@ -57,7 +57,7 @@ const std::set&lt;const cmGeneratorTarget*&gt;&amp; GetTargetDependsClosure(
     targetDepends,
   const cmGeneratorTarget* tgt)
 {
-  auto it = targetDepends.insert({ tgt, {} });
+  auto it = targetDepends.insert({ tgt, std::set&lt;const cmGeneratorTarget*&gt;{} });
   auto&amp; retval = it.first-&gt;second;
   if (it.second) {
     auto const&amp; deps = tgt-&gt;GetGlobalGenerator()-&gt;GetTargetDirectDepends(tgt);
</pre></body></html>