From 8d6c00d45d7815240d6e3a46128737e03ca73c50 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sat, 18 Jun 2016 12:09:08 +0200 Subject: Cosmetic changes --- build2/target | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'build2/target') diff --git a/build2/target b/build2/target index be0eff9..8d2a22d 100644 --- a/build2/target +++ b/build2/target @@ -513,8 +513,8 @@ namespace build2 operator!= (const iterator& x, const iterator& y) {return !(x == y);} private: - target* t_ {nullptr}; - prerequisites_type* c_ {nullptr}; + target* t_ = nullptr; + prerequisites_type* c_ = nullptr; base_iterator i_; }; @@ -908,12 +908,12 @@ namespace build2 return t->mtime_; } + // Note that while we can cache the mtime at any time, it may be ignored + // if the target state is group (see the mtime() accessor). + // void mtime (timestamp mt) { - // While we can cache the mtime at any time, it may be ignored - // if the target state is group (see the mtime() accessor). - // mtime_ = mt; } -- cgit v1.1