From c34203e721263c0da985ff301d9000981a8eb098 Mon Sep 17 00:00:00 2001 From: q66 Date: Sat, 6 Aug 2016 19:13:06 +0100 Subject: [PATCH] remove Uint32 use --- main.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.cc b/main.cc index b707ef4..ca03b95 100644 --- a/main.cc +++ b/main.cc @@ -20,7 +20,6 @@ using ostd::ConstCharRange; using ostd::Vector; using ostd::Map; using ostd::String; -using ostd::Uint32; using ostd::slice_until; using ostd::UniqueLock; using ostd::Mutex; @@ -30,6 +29,7 @@ using cscript::CsState; using cscript::TvalRange; using cscript::StackedValue; using cscript::BytecodeRef; +using cscript::Bytecode; /* glob matching code */ @@ -506,7 +506,7 @@ struct ObState: CsState { } void rule_add( - ConstCharRange tgt, ConstCharRange dep, Uint32 *body, + ConstCharRange tgt, ConstCharRange dep, Bytecode *body, bool action = false ) { auto targets = cscript::util::list_explode(tgt);