diff options
| -rw-r--r-- | clang/include/clang/Analysis/PathSensitive/GRStateTrait.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/clang/include/clang/Analysis/PathSensitive/GRStateTrait.h b/clang/include/clang/Analysis/PathSensitive/GRStateTrait.h index 077b9bcf438..d2d5c624f0b 100644 --- a/clang/include/clang/Analysis/PathSensitive/GRStateTrait.h +++ b/clang/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); |

