diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-04-02 15:44:49 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-04-02 15:44:49 +0200 |
commit | 137df0bea6cebabe5278e67e5dad6f3047c762fb (patch) | |
tree | 2ea23a35f99d21a4d9eca89ed71ac9ba2a734f52 /build/context.txx | |
parent | 65dca85d0acc1ae69518e85b52a2877e38dc8c6d (diff) |
Handle "nothing to be done" case for disfigure
Diffstat (limited to 'build/context.txx')
-rw-r--r-- | build/context.txx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/context.txx b/build/context.txx index cae1ce8..53081b1 100644 --- a/build/context.txx +++ b/build/context.txx @@ -9,7 +9,7 @@ namespace build { template <typename T> - rmfile_status + fs_status<rmfile_status> rmfile (const path& f, const T& t) { // We don't want to print the command if we couldn't remove the @@ -45,7 +45,7 @@ namespace build } template <typename T> - rmdir_status + fs_status<rmdir_status> rmdir (const path& d, const T& t) { bool w (d == work); // Don't try to remove working directory. |