Skip to content

Commit

Permalink
Fix var names
Browse files Browse the repository at this point in the history
  • Loading branch information
tristanlabelle committed Oct 6, 2024
1 parent 435fe40 commit 61c40d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions InteropTests/WinRTComponent/Dll/Enums.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ namespace winrt::WinRTComponent::implementation
{
FlagsEnum Enums::BitwiseAnd(FlagsEnum lhs, FlagsEnum rhs)
{
return value & flags;
return lhs & rhs;
}

FlagsEnum Enums::BitwiseOr(FlagsEnum lhs, FlagsEnum rhs)
{
return value | flags;
return lhs | rhs;
}
}
Binary file added TristanLabelle.SwiftWinRT.0.0.0.nupkg
Binary file not shown.

0 comments on commit 61c40d3

Please sign in to comment.