Skip to content

Commit

Permalink
More Windows builds fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
MikePopoloski committed Dec 22, 2024
1 parent d4066b2 commit 170ad7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions source/ast/ElabVisitors.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ class InstanceCacheKey {
InstanceCacheKey(const InstanceSymbol& symbol);

bool operator==(const InstanceCacheKey& other) const;
bool operator!=(const InstanceCacheKey& other) const { return !(*this == other); }

size_t hash() const { return savedHash; }

Expand Down
2 changes: 1 addition & 1 deletion source/ast/Lookup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ bool lookupUpward(std::span<const NamePlusLoc> nameParts, const NameComponents&
return lookupDownward(nameParts, name, context, flags, result);
};

size_t upwardCount = 0;
uint32_t upwardCount = 0;
const Scope* scope = context.scope;
do {
// Search for a scope or instance target within our current scope.
Expand Down

0 comments on commit 170ad7b

Please sign in to comment.