diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-06-18 17:27:25 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-06-18 17:27:25 +0200 |
commit | 902f3763af4931c5c04c47d10e4d24dba96487cd (patch) | |
tree | 9b91c7e1636bdaf5b3f6b1800a0793977ecacd46 /build/target | |
parent | 501ce5993f3d52208696c81248829247da7b46b5 (diff) |
Move path_mtime to filesystem, rename file_mtime, follow symlinks
Diffstat (limited to 'build/target')
-rw-r--r-- | build/target | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build/target b/build/target index 9388065..54b9daf 100644 --- a/build/target +++ b/build/target @@ -520,10 +520,6 @@ namespace build const char* name_prefix = nullptr, const char* name_suffix = nullptr); - protected: - virtual timestamp - load_mtime () const; - public: static const target_type static_type; @@ -538,6 +534,10 @@ namespace build public: using path_target::path_target; + protected: + virtual timestamp + load_mtime () const; + public: virtual const target_type& type () const {return static_type;} static const target_type static_type; |