[PATCH] D39620: [analyzer] [NFC] Remove unused typedef
George Karpenkov via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Nov 6 18:02:55 PST 2017
This revision was automatically updated to reflect the committed changes.
Closed by commit rL317537: [analyzer] [NFC] Remove unused typedef from SVals.h (authored by george.karpenkov).
Changed prior to commit:
https://reviews.llvm.org/D39620?vs=121556&id=121827#toc
Repository:
rL LLVM
https://reviews.llvm.org/D39620
Files:
cfe/trunk/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h
Index: cfe/trunk/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h
===================================================================
--- cfe/trunk/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h
+++ cfe/trunk/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h
@@ -103,9 +103,6 @@
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; }
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D39620.121827.patch
Type: text/x-patch
Size: 671 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20171107/78532ae5/attachment-0001.bin>
More information about the cfe-commits
mailing list