aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2016-09-16 19:34:45 -0700
committerDan Willemsen <dwillemsen@google.com>2016-09-19 12:44:08 -0700
commitf2b88a538463defc28a4f56c762d913d2aca3ea3 (patch)
tree46a492d159ce8aace315bd9ae266d8067d4916b7
parentd26caadec345d7f19d63f894a0b8320693543ea6 (diff)
Fix unused parameter warning for !SSE4.2
Change-Id: I7099c92120dde0d985bc9d19fe0b2573027e5d79
-rw-r--r--strutil.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/strutil.cc b/strutil.cc
index 8f7ff06..1b99dff 100644
--- a/strutil.cc
+++ b/strutil.cc
@@ -57,7 +57,7 @@ static int SkipUntilSSE42(const char* s, int len,
template <typename Cond>
static int SkipUntil(const char* s, int len,
- const char* ranges, int ranges_size,
+ const char* ranges UNUSED, int ranges_size UNUSED,
Cond cond) {
int i = 0;
#ifdef __SSE4_2__