Skip to content

Commit 2d64a3a

Browse files
Fix some build errors from updated VS build agents (#18927)
Looks like there's a new VS version on the build agents. This just goes through and fixes any issues they found. There's still a COMPILER CRASH though.
1 parent b50eaa1 commit 2d64a3a

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/cascadia/TerminalApp/TerminalPage.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2303,7 +2303,7 @@ namespace winrt::TerminalApp::implementation
23032303
// for it. The Title change will be propagated upwards through the tab's
23042304
// PropertyChanged event handler.
23052305
void TerminalPage::_activePaneChanged(winrt::TerminalApp::TerminalTab sender,
2306-
Windows::Foundation::IInspectable args)
2306+
Windows::Foundation::IInspectable /*args*/)
23072307
{
23082308
if (const auto tab{ _GetTerminalTabImpl(sender) })
23092309
{
@@ -5382,8 +5382,8 @@ namespace winrt::TerminalApp::implementation
53825382
_sendDraggedTabToWindow(winrt::to_hstring(args.TargetWindow()), args.TabIndex(), std::nullopt);
53835383
}
53845384

5385-
void TerminalPage::_onTabDroppedOutside(winrt::IInspectable sender,
5386-
winrt::MUX::Controls::TabViewTabDroppedOutsideEventArgs e)
5385+
void TerminalPage::_onTabDroppedOutside(winrt::IInspectable /*sender*/,
5386+
winrt::MUX::Controls::TabViewTabDroppedOutsideEventArgs /*e*/)
53875387
{
53885388
// Get the current pointer point from the CoreWindow
53895389
const auto& pointerPoint{ CoreWindow::GetForCurrentThread().PointerPosition() };

src/cascadia/TerminalControl/InteractivityAutomationPeer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ namespace winrt::Microsoft::Terminal::Control::implementation
118118
return WrapArrayOfTextRangeProviders(pReturnVal);
119119
}
120120

121-
XamlAutomation::ITextRangeProvider InteractivityAutomationPeer::RangeFromChild(XamlAutomation::IRawElementProviderSimple childElement)
121+
XamlAutomation::ITextRangeProvider InteractivityAutomationPeer::RangeFromChild(XamlAutomation::IRawElementProviderSimple /*childElement*/)
122122
{
123123
UIA::ITextRangeProvider* returnVal;
124124
// ScreenInfoUiaProvider doesn't actually use parameter, so just pass in nullptr

src/host/ut_host/Host.UnitTests.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
</ProjectReference>
7979
</ItemGroup>
8080
<ItemGroup>
81-
<ClInclude Include="..\..\inc\CommonState.hpp" />
81+
<ClInclude Include="..\..\inc\test\CommonState.hpp" />
8282
<ClInclude Include="..\precomp.h" />
8383
<ClInclude Include="UnicodeLiteral.hpp" />
8484
</ItemGroup>

src/host/ut_host/Host.UnitTests.vcxproj.filters

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
<ClInclude Include="..\precomp.h">
8484
<Filter>Header Files</Filter>
8585
</ClInclude>
86-
<ClInclude Include="..\..\inc\CommonState.hpp">
86+
<ClInclude Include="..\..\inc\test\CommonState.hpp">
8787
<Filter>Header Files</Filter>
8888
</ClInclude>
8989
</ItemGroup>

0 commit comments

Comments
 (0)