Skip to content

Commit

Permalink
[analyzer] [NFC] Remove unused typedef from SVals.h
Browse files Browse the repository at this point in the history
Differential Revision: https://reviews.llvm.org/D39620

llvm-svn: 317537
  • Loading branch information
George Karpenkov committed Nov 7, 2017
1 parent fcd7494 commit 166548c
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h
Expand Up @@ -103,9 +103,6 @@ class SVal {
return *static_cast<const T *>(this);
}

/// BufferTy - A temporary buffer to hold a set of SVals.
typedef SmallVector<SVal,5> BufferTy;

inline unsigned getRawKind() const { return Kind; }
inline BaseKind getBaseKind() const { return (BaseKind) (Kind & BaseMask); }
inline unsigned getSubKind() const { return (Kind & ~BaseMask) >> BaseBits; }
Expand Down

0 comments on commit 166548c

Please sign in to comment.