From 0996cc82a7e03de9217135b93be5fc3992666ee4 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sun, 15 Aug 2021 23:17:12 +0100 Subject: [PATCH] Keep -vet happy --- examples/demo/demo.odin | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/demo/demo.odin b/examples/demo/demo.odin index bf3620388..ccbfea75d 100644 --- a/examples/demo/demo.odin +++ b/examples/demo/demo.odin @@ -2098,6 +2098,7 @@ or_return_operator :: proc() { // The above idiom can be transformed into the following y := caller_2() or_return; + _ = y; // And if the expression is 1-valued, it can be used like this caller_1() or_return;