Skip to content

Commit

Permalink
[clang][dataflow] Disambiguate a ref to "internal" in CachedConstAcce…
Browse files Browse the repository at this point in the history
…ssorsLattice (#113601)

Disambiguate to fix a build error (e.g., on windows with clang-cl)
  • Loading branch information
jvoung authored Oct 24, 2024
1 parent 6c64c8a commit 8aa69a0
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,11 +154,12 @@ LatticeEffect CachedConstAccessorsLattice<Base>::join(
// are non-identical but equivalent. This is likely to be sufficient in
// practice, and it reduces implementation complexity considerably.

ConstMethodReturnValues = internal::joinConstMethodMap<Value>(
ConstMethodReturnValues, Other.ConstMethodReturnValues, Effect);
ConstMethodReturnValues =
clang::dataflow::internal::joinConstMethodMap<dataflow::Value>(
ConstMethodReturnValues, Other.ConstMethodReturnValues, Effect);

ConstMethodReturnStorageLocations =
internal::joinConstMethodMap<StorageLocation>(
clang::dataflow::internal::joinConstMethodMap<dataflow::StorageLocation>(
ConstMethodReturnStorageLocations,
Other.ConstMethodReturnStorageLocations, Effect);

Expand Down

0 comments on commit 8aa69a0

Please sign in to comment.