diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2016-08-22 20:51:00 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2016-08-22 20:51:00 +0000 |
commit | b29ec1e040fb798418eee8a14e13f9df7c372658 (patch) | |
tree | 5fcbaa2d864f7798b0316141777e210f237fe79d /llvm/lib/Support/YAMLParser.cpp | |
parent | a392049419b4515fd0838a4882f761db006cb9ad (diff) | |
download | bcm5719-llvm-b29ec1e040fb798418eee8a14e13f9df7c372658.tar.gz bcm5719-llvm-b29ec1e040fb798418eee8a14e13f9df7c372658.zip |
ADT: Remove ilist_*sentinel_traits, NFC
Remove all the dead code around ilist_*sentinel_traits. This is a
follow-up to gutting them as part of r279314 (originally r278974),
staged to prevent broken builds in sub-projects.
Uses were removed from clang in r279457 and lld in r279458.
llvm-svn: 279473
Diffstat (limited to 'llvm/lib/Support/YAMLParser.cpp')
-rw-r--r-- | llvm/lib/Support/YAMLParser.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/Support/YAMLParser.cpp b/llvm/lib/Support/YAMLParser.cpp index 4d5b750e266..7490f1a9708 100644 --- a/llvm/lib/Support/YAMLParser.cpp +++ b/llvm/lib/Support/YAMLParser.cpp @@ -149,10 +149,6 @@ struct Token : ilist_node<Token> { } namespace llvm { -template <> -struct ilist_sentinel_traits<Token> - : public ilist_full_embedded_sentinel_traits<Token> {}; - template<> struct ilist_node_traits<Token> { Token *createNode(const Token &V) { |