diff options
Diffstat (limited to 'build')
-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 ();} |