From 52347f3cf73af2d81fcc4dfba9771b7e555cd802 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 22 May 2015 14:54:41 +0200 Subject: Add missing return --- build/name | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build') diff --git a/build/name b/build/name index 302092b..412abad 100644 --- a/build/name +++ b/build/name @@ -36,7 +36,7 @@ namespace build : type (std::move (t)), dir (std::move (d)), value (std::move (v)) {} bool - empty () const {type.empty () && dir.empty () && value.empty ();} + empty () const {return type.empty () && dir.empty () && value.empty ();} bool simple () const {return type.empty () && dir.empty ();} -- cgit v1.1