diff options
Diffstat (limited to 'build2/test/common.cxx')
-rw-r--r-- | build2/test/common.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build2/test/common.cxx b/build2/test/common.cxx index 1b4c194..be0e690 100644 --- a/build2/test/common.cxx +++ b/build2/test/common.cxx @@ -55,7 +55,7 @@ namespace build2 } bool common:: - pass (target& a) const + pass (const target& a) const { if (test_ == nullptr) return true; @@ -95,7 +95,7 @@ namespace build2 } bool common:: - test (target& t) const + test (const target& t) const { if (test_ == nullptr) return true; @@ -159,7 +159,7 @@ namespace build2 } bool common:: - test (target& t, const path& id) const + test (const target& t, const path& id) const { if (test_ == nullptr) return true; |