File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
clang/include/clang/Analysis/FlowSensitive Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments