File tree 1 file changed +4
-3
lines changed
clang/include/clang/Analysis/FlowSensitive
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(
154
154
// are non-identical but equivalent. This is likely to be sufficient in
155
155
// practice, and it reduces implementation complexity considerably.
156
156
157
- ConstMethodReturnValues = internal::joinConstMethodMap<Value>(
158
- ConstMethodReturnValues, Other.ConstMethodReturnValues , Effect);
157
+ ConstMethodReturnValues =
158
+ clang::dataflow::internal::joinConstMethodMap<dataflow::Value>(
159
+ ConstMethodReturnValues, Other.ConstMethodReturnValues , Effect);
159
160
160
161
ConstMethodReturnStorageLocations =
161
- internal::joinConstMethodMap<StorageLocation>(
162
+ clang::dataflow:: internal::joinConstMethodMap<dataflow:: StorageLocation>(
162
163
ConstMethodReturnStorageLocations,
163
164
Other.ConstMethodReturnStorageLocations , Effect);
164
165
You can’t perform that action at this time.
0 commit comments