aboutsummaryrefslogtreecommitdiff
path: root/build/search
diff options
context:
space:
mode:
Diffstat (limited to 'build/search')
-rw-r--r--build/search12
1 files changed, 6 insertions, 6 deletions
diff --git a/build/search b/build/search
index dfbe32e..1f90a8a 100644
--- a/build/search
+++ b/build/search
@@ -10,22 +10,22 @@
namespace build
{
class target;
- class prerequisite;
+ class prerequisite_key;
- // Search for an existing target in this prerequisite's directory scope.
+ // Search for an existing target in this prerequisite's scope.
//
target*
- search_existing_target (prerequisite&);
+ search_existing_target (const prerequisite_key&);
// Search for an existing file in the specified list of search paths.
//
target*
- search_existing_file (prerequisite&, const dir_paths&);
+ search_existing_file (const prerequisite_key&, const dir_paths&);
- // Create a new target in this prerequisite's directory scope.
+ // Create a new target in this prerequisite's scope.
//
target&
- create_new_target (prerequisite&);
+ create_new_target (const prerequisite_key&);
}
#endif // BUILD_SEARCH