diff options
author | 2011-03-29 14:43:22 +0100 | |
---|---|---|
committer | 2011-04-04 08:32:59 +0100 | |
commit | 52a4c781098800f3b2831134f5e94434729c46a5 (patch) | |
tree | 55499ba5305132e315d51633332ee18289df5adb /doc | |
parent | bc262ad74eb8d80eb979a5c5591b222d5fc1eb36 (diff) | |
download | paludis-52a4c781098800f3b2831134f5e94434729c46a5.tar.gz paludis-52a4c781098800f3b2831134f5e94434729c46a5.tar.xz |
installable to path to requirements
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/cplusplus/examples/example_dep_spec.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/api/cplusplus/examples/example_dep_spec.cc b/doc/api/cplusplus/examples/example_dep_spec.cc index d8256a55c..6a7fd690d 100644 --- a/doc/api/cplusplus/examples/example_dep_spec.cc +++ b/doc/api/cplusplus/examples/example_dep_spec.cc @@ -113,10 +113,10 @@ int main(int argc, char * argv[]) cout << " " << left << setw(24) << "Installed at path:" << " " << spec.installed_at_path_constraint()->path() << endl; - if (spec.installable_to_path_ptr()) + if (spec.installable_to_path_constraint()) cout << " " << left << setw(24) << "Installable to path:" << " " << - spec.installable_to_path_ptr()->path() << ", " << - spec.installable_to_path_ptr()->include_masked() << endl; + spec.installable_to_path_constraint()->path() << ", " << + spec.installable_to_path_constraint()->include_masked() << endl; if (spec.installable_to_repository_ptr()) cout << " " << left << setw(24) << "Installable to repository:" << " " << |