Skip to content

Commit 8aa69a0

Browse files
authored
[clang][dataflow] Disambiguate a ref to "internal" in CachedConstAccessorsLattice (#113601)
Disambiguate to fix a build error (e.g., on windows with clang-cl)
1 parent 6c64c8a commit 8aa69a0

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

clang/include/clang/Analysis/FlowSensitive/CachedConstAccessorsLattice.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,11 +154,12 @@ LatticeEffect CachedConstAccessorsLattice<Base>::join(
154154
// are non-identical but equivalent. This is likely to be sufficient in
155155
// practice, and it reduces implementation complexity considerably.
156156

157-
ConstMethodReturnValues = internal::joinConstMethodMap<Value>(
158-
ConstMethodReturnValues, Other.ConstMethodReturnValues, Effect);
157+
ConstMethodReturnValues =
158+
clang::dataflow::internal::joinConstMethodMap<dataflow::Value>(
159+
ConstMethodReturnValues, Other.ConstMethodReturnValues, Effect);
159160

160161
ConstMethodReturnStorageLocations =
161-
internal::joinConstMethodMap<StorageLocation>(
162+
clang::dataflow::internal::joinConstMethodMap<dataflow::StorageLocation>(
162163
ConstMethodReturnStorageLocations,
163164
Other.ConstMethodReturnStorageLocations, Effect);
164165

0 commit comments

Comments
 (0)