diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-11-17 06:14:37 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-11-17 06:14:37 +0000 |
commit | 6490ae5003226cae28f980648948bea8b21a8638 (patch) | |
tree | defeb5e5e494c6ce431b45041a6a6479bd65ed97 /lib/Sema/JumpDiagnostics.cpp | |
parent | 48c32a7e7c977f317dc1dc19524c2f54d29c7270 (diff) |
Silence some warnings produced by Clang, and add a missing header
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@89051 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/JumpDiagnostics.cpp')
-rw-r--r-- | lib/Sema/JumpDiagnostics.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/JumpDiagnostics.cpp b/lib/Sema/JumpDiagnostics.cpp index a8e31d2cfa..2b37e9df2c 100644 --- a/lib/Sema/JumpDiagnostics.cpp +++ b/lib/Sema/JumpDiagnostics.cpp @@ -325,5 +325,5 @@ void JumpScopeChecker::CheckJump(Stmt *From, Stmt *To, } void Sema::DiagnoseInvalidJumps(Stmt *Body) { - JumpScopeChecker(Body, *this); + (void)JumpScopeChecker(Body, *this); } |