diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-05-22 14:54:41 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-05-22 14:54:41 +0200 |
commit | 52347f3cf73af2d81fcc4dfba9771b7e555cd802 (patch) | |
tree | 24b7e7e6e8f008097f41245d0cbdb3c486ee59d8 | |
parent | 2a97a272f33b0a0ec8bffd85c61091366591aced (diff) |
Add missing return
-rw-r--r-- | build/name | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 ();} |