From 647b1a86f518d8db0331b3d52a96392b7a62504b Mon Sep 17 00:00:00 2001 From: Ian Rogers Date: Fri, 10 Oct 2014 11:02:11 -0700 Subject: Fix 2 new sets of clang compiler warnings. Fix issues that are flagged by -Wfloat-equal and -Wmissing-noreturn. In the case of -Wfloat-equal the current cases in regular code are deliberate, so the change is to silence the warning. For gtest code the appropriate fix is to switch from EXPECT_EQ to EXPECT_(FLOAT|DOUBLE)_EQ. The -Wmissing-noreturn warning isn't enabled due to a missing noreturn in gtest. This issue has been reported to gtest. Change-Id: Id84c70c21c542716c9ee0c41492e8ff8788c4ef8 --- patchoat/patchoat.cc | 1 + 1 file changed, 1 insertion(+) (limited to 'patchoat/patchoat.cc') diff --git a/patchoat/patchoat.cc b/patchoat/patchoat.cc index fbb36f3e99..2d165b05da 100644 --- a/patchoat/patchoat.cc +++ b/patchoat/patchoat.cc @@ -644,6 +644,7 @@ static void UsageError(const char* fmt, ...) { va_end(ap); } +static void Usage(const char *fmt, ...) NO_RETURN; static void Usage(const char *fmt, ...) { va_list ap; va_start(ap, fmt); -- cgit v1.2.3-59-g8ed1b