aboutsummaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-05-22 14:54:41 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-05-22 14:54:41 +0200
commit52347f3cf73af2d81fcc4dfba9771b7e555cd802 (patch)
tree24b7e7e6e8f008097f41245d0cbdb3c486ee59d8 /build
parent2a97a272f33b0a0ec8bffd85c61091366591aced (diff)
Add missing return
Diffstat (limited to 'build')
-rw-r--r--build/name2
1 files changed, 1 insertions, 1 deletions
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 ();}