diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2010-08-15 01:15:58 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2010-08-15 01:15:58 +0000 |
commit | 1cec2cc798f526da2960b93d73184a9238bf65e7 (patch) | |
tree | 1dbf87e2439f6fec787d78539cdf7253bc500c06 /clang/lib/Sema | |
parent | c99bab034c44162820e641058ba9af3d30ea799b (diff) | |
download | bcm5719-llvm-1cec2cc798f526da2960b93d73184a9238bf65e7.tar.gz bcm5719-llvm-1cec2cc798f526da2960b93d73184a9238bf65e7.zip |
Remove dead code, caught by unused function warnings.
llvm-svn: 111091
Diffstat (limited to 'clang/lib/Sema')
-rw-r--r-- | clang/lib/Sema/SemaChecking.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaChecking.cpp b/clang/lib/Sema/SemaChecking.cpp index f6d37d432d7..3245d0c987e 100644 --- a/clang/lib/Sema/SemaChecking.cpp +++ b/clang/lib/Sema/SemaChecking.cpp @@ -2102,7 +2102,6 @@ struct IntRange { /// True if the int is known not to have negative values. bool NonNegative; - IntRange() {} IntRange(unsigned Width, bool NonNegative) : Width(Width), NonNegative(NonNegative) {} |