diff options
-rw-r--r-- | include/clang/Analysis/PathSensitive/GRStateTrait.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/clang/Analysis/PathSensitive/GRStateTrait.h b/include/clang/Analysis/PathSensitive/GRStateTrait.h index 077b9bcf43..d2d5c624f0 100644 --- a/include/clang/Analysis/PathSensitive/GRStateTrait.h +++ b/include/clang/Analysis/PathSensitive/GRStateTrait.h @@ -83,7 +83,11 @@ namespace clang { static inline void* MakeVoidPtr(data_type B) { return B.getRoot(); - } + } + + static data_type Add(data_type B, key_type K, context_type F) { + return F.Add(B, K); + } static data_type Remove(data_type B, key_type K, context_type F) { return F.Remove(B, K); |