From 427d2b5d3a3ca56d6561302d8ac0a0a6eb259953 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 1 Oct 2021 11:23:19 +0200 Subject: Add missing return to scope::bundle_root() --- libbuild2/scope.ixx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libbuild2/scope.ixx b/libbuild2/scope.ixx index c8214f6..e123e4a 100644 --- a/libbuild2/scope.ixx +++ b/libbuild2/scope.ixx @@ -82,6 +82,8 @@ namespace build2 return r; } + + return nullptr; } inline const scope* scope:: @@ -102,6 +104,8 @@ namespace build2 return r; } + + return nullptr; } inline scope* scope:: -- cgit v1.1