aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/Sema.cpp
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2013-01-26 01:36:54 +0000
committerNick Lewycky <nicholas@mxc.ca>2013-01-26 01:36:54 +0000
commit87827616cd5540a4893e0c2c285c90dedb50fb91 (patch)
tree19daff773e26bb000815bfaecd5c674e0590ce1c /lib/Sema/Sema.cpp
parenta9cd3d8452a253adf296d327a53e7009a2b01594 (diff)
Remove function that is newly dead as of r173538.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173550 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/Sema.cpp')
-rw-r--r--lib/Sema/Sema.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/Sema/Sema.cpp b/lib/Sema/Sema.cpp
index c0482767ca..5dc2a6a700 100644
--- a/lib/Sema/Sema.cpp
+++ b/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.