From c9cb051fae190acfc36813e4a23759fb9b9c3df3 Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Mon, 16 Nov 2020 12:48:44 +0100 Subject: Implement hierarchical evaluation (WIP) --- asm/operators.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'asm/operators.h') diff --git a/asm/operators.h b/asm/operators.h index 741ec72..280de58 100644 --- a/asm/operators.h +++ b/asm/operators.h @@ -8,3 +8,5 @@ std::vector operator+(std::vector a, const std::vector& b); std::vector operator+(std::vector a, const uint8_t& b); +std::vector operator+=(std::vector& a, const std::vector& b); +std::vector operator+=(std::vector& a, const uint8_t& b); -- cgit v1.2.3