From f6a29774dad882b4e58c311e97dc7d3fc5ad8072 Mon Sep 17 00:00:00 2001 From: q66 Date: Wed, 25 Jan 2017 02:11:44 +0100 Subject: [PATCH] use size_t --- main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cc b/main.cc index 7bcd994..af55e75 100644 --- a/main.cc +++ b/main.cc @@ -255,7 +255,7 @@ static ConstCharRange ob_compare_subst( if (expanded.size() <= rep.size()) { return nullptr; } - ostd::Size es = expanded.size(); + size_t es = expanded.size(); if (expanded.slice(es - rep.size(), es) != rep) { return nullptr; }