diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2013-01-26 01:36:54 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2013-01-26 01:36:54 +0000 |
commit | d191472c99687e033a1ed799053c95312a91c10d (patch) | |
tree | 1ad91b109b2b51849fce11db0259ec3a90cef7f0 /clang | |
parent | f6f21d207c012f5e5db183c0a2e1ab8ed4770336 (diff) | |
download | bcm5719-llvm-d191472c99687e033a1ed799053c95312a91c10d.tar.gz bcm5719-llvm-d191472c99687e033a1ed799053c95312a91c10d.zip |
Remove function that is newly dead as of r173538.
llvm-svn: 173550
Diffstat (limited to 'clang')
-rw-r--r-- | clang/lib/Sema/Sema.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/clang/lib/Sema/Sema.cpp b/clang/lib/Sema/Sema.cpp index c0482767caf..5dc2a6a7002 100644 --- a/clang/lib/Sema/Sema.cpp +++ b/clang/lib/Sema/Sema.cpp @@ -373,10 +373,6 @@ namespace { UndefinedInternal(NamedDecl *decl, FullSourceLoc useLoc) : decl(decl), useLoc(useLoc) {} }; - - bool operator<(const UndefinedInternal &l, const UndefinedInternal &r) { - return l.useLoc.isBeforeInTranslationUnitThan(r.useLoc); - } } /// checkUndefinedInternals - Check for undefined objects with internal linkage. |