diff options
author | 2010-08-24 13:28:45 +0100 | |
---|---|---|
committer | 2010-08-24 15:47:41 +0100 | |
commit | 49750cc61904ba17060521bd345c6ae526fb1bf8 (patch) | |
tree | 8aa8c06a7d6ec58c62dd0741011e8357a19c8b8d /doc/api/cplusplus/examples/example_metadata_key.cc | |
parent | 75f48bbb1ae368febe984c10c2db2d0b5cbd7cec (diff) | |
download | paludis-49750cc61904ba17060521bd345c6ae526fb1bf8.tar.gz paludis-49750cc61904ba17060521bd345c6ae526fb1bf8.tar.xz |
FSEntry -> FSPath, FSStat
Fixes: ticket:967
Diffstat (limited to 'doc/api/cplusplus/examples/example_metadata_key.cc')
-rw-r--r-- | doc/api/cplusplus/examples/example_metadata_key.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/api/cplusplus/examples/example_metadata_key.cc b/doc/api/cplusplus/examples/example_metadata_key.cc index 21cd85fe4..a75944a6d 100644 --- a/doc/api/cplusplus/examples/example_metadata_key.cc +++ b/doc/api/cplusplus/examples/example_metadata_key.cc @@ -75,9 +75,9 @@ namespace cout << indent << left << setw(30) << " Value:" << " " << key.value() << endl; } - void visit(const MetadataValueKey<FSEntry> & key) + void visit(const MetadataValueKey<FSPath> & key) { - cout << indent << left << setw(30) << " Class:" << " " << "MetadataValueKey<FSEntry>" << endl; + cout << indent << left << setw(30) << " Class:" << " " << "MetadataValueKey<FSPath>" << endl; cout << indent << left << setw(30) << " Value:" << " " << key.value() << endl; } @@ -193,9 +193,9 @@ namespace cout << indent << left << setw(30) << " Value:" << " " << join(key.value()->begin(), key.value()->end(), " ") << endl; } - void visit(const MetadataCollectionKey<FSEntrySequence> & key) + void visit(const MetadataCollectionKey<FSPathSequence> & key) { - cout << indent << left << setw(30) << " Class:" << " " << "MetadataCollectionKey<FSEntrySequence>" << endl; + cout << indent << left << setw(30) << " Class:" << " " << "MetadataCollectionKey<FSPathSequence>" << endl; cout << indent << left << setw(30) << " Value:" << " " << join(key.value()->begin(), key.value()->end(), " ") << endl; } |