diff options
author | 2020-05-01 10:58:13 +0200 | |
---|---|---|
committer | 2021-09-17 12:40:16 +0200 | |
commit | 59fb259e552bbeb788c37c6f02c491fc2f2f429d (patch) | |
tree | 6ac9e3dffa26665dc60c801821e39b9180b60c6b /paludis/repositories/gemcutter/gemcutter_id.hh | |
parent | 2ef0e7b273b1d426ac86682b776097d4911496e2 (diff) | |
download | paludis-59fb259e552bbeb788c37c6f02c491fc2f2f429d.tar.gz paludis-59fb259e552bbeb788c37c6f02c491fc2f2f429d.tar.xz |
gemcutter_id: Fix wrong indentation (NFC)
Diffstat (limited to 'paludis/repositories/gemcutter/gemcutter_id.hh')
-rw-r--r-- | paludis/repositories/gemcutter/gemcutter_id.hh | 64 |
1 files changed, 32 insertions, 32 deletions
diff --git a/paludis/repositories/gemcutter/gemcutter_id.hh b/paludis/repositories/gemcutter/gemcutter_id.hh index a96805270..fd8e9389d 100644 --- a/paludis/repositories/gemcutter/gemcutter_id.hh +++ b/paludis/repositories/gemcutter/gemcutter_id.hh @@ -59,42 +59,42 @@ namespace paludis GemcutterID(const GemcutterIDParams &); ~GemcutterID(); - const std::string canonical_form(const PackageIDCanonicalForm) const; - const QualifiedPackageName name() const; - const VersionSpec version() const; - const RepositoryName repository_name() const; - virtual PackageDepSpec uniquely_identifying_spec() const; + const std::string canonical_form(const PackageIDCanonicalForm) const; + const QualifiedPackageName name() const; + const VersionSpec version() const; + const RepositoryName repository_name() const; + virtual PackageDepSpec uniquely_identifying_spec() const; - const std::shared_ptr<const MetadataValueKey<Slot> > slot_key() const; - const std::shared_ptr<const MetadataCollectionKey<KeywordNameSet> > keywords_key() const; - const std::shared_ptr<const MetadataSpecTreeKey<DependencySpecTree> > - dependencies_key() const; - const std::shared_ptr<const MetadataSpecTreeKey<DependencySpecTree> > - build_dependencies_key() const; - const std::shared_ptr<const MetadataSpecTreeKey<DependencySpecTree> > - run_dependencies_key() const; - const std::shared_ptr<const MetadataSpecTreeKey<DependencySpecTree> > - post_dependencies_key() const; - const std::shared_ptr<const MetadataSpecTreeKey<FetchableURISpecTree> > fetches_key() const; - const std::shared_ptr<const MetadataSpecTreeKey<SimpleURISpecTree> > homepage_key() const; - const std::shared_ptr<const MetadataValueKey<std::string> > short_description_key() const; - const std::shared_ptr<const MetadataValueKey<std::string> > long_description_key() const; - const std::shared_ptr<const MetadataTimeKey> installed_time_key() const; - const std::shared_ptr<const MetadataValueKey<FSPath> > fs_location_key() const; - const std::shared_ptr<const MetadataCollectionKey<Set<std::string> > > behaviours_key() const; - const std::shared_ptr<const MetadataCollectionKey<Set<std::string> > > from_repositories_key() const; - const std::shared_ptr<const MetadataValueKey<std::shared_ptr<const Choices> > > choices_key() const; + const std::shared_ptr<const MetadataValueKey<Slot> > slot_key() const; + const std::shared_ptr<const MetadataCollectionKey<KeywordNameSet> > keywords_key() const; + const std::shared_ptr<const MetadataSpecTreeKey<DependencySpecTree> > + dependencies_key() const; + const std::shared_ptr<const MetadataSpecTreeKey<DependencySpecTree> > + build_dependencies_key() const; + const std::shared_ptr<const MetadataSpecTreeKey<DependencySpecTree> > + run_dependencies_key() const; + const std::shared_ptr<const MetadataSpecTreeKey<DependencySpecTree> > + post_dependencies_key() const; + const std::shared_ptr<const MetadataSpecTreeKey<FetchableURISpecTree> > fetches_key() const; + const std::shared_ptr<const MetadataSpecTreeKey<SimpleURISpecTree> > homepage_key() const; + const std::shared_ptr<const MetadataValueKey<std::string> > short_description_key() const; + const std::shared_ptr<const MetadataValueKey<std::string> > long_description_key() const; + const std::shared_ptr<const MetadataTimeKey> installed_time_key() const; + const std::shared_ptr<const MetadataValueKey<FSPath> > fs_location_key() const; + const std::shared_ptr<const MetadataCollectionKey<Set<std::string> > > behaviours_key() const; + const std::shared_ptr<const MetadataCollectionKey<Set<std::string> > > from_repositories_key() const; + const std::shared_ptr<const MetadataValueKey<std::shared_ptr<const Choices> > > choices_key() const; - bool supports_action(const SupportsActionTestBase &) const - PALUDIS_ATTRIBUTE((warn_unused_result)); - void perform_action(Action &) const PALUDIS_ATTRIBUTE((noreturn)); - - bool arbitrary_less_than_comparison(const PackageID &) const - PALUDIS_ATTRIBUTE((warn_unused_result)); - std::size_t extra_hash_value() const + bool supports_action(const SupportsActionTestBase &) const PALUDIS_ATTRIBUTE((warn_unused_result)); + void perform_action(Action &) const PALUDIS_ATTRIBUTE((noreturn)); + + bool arbitrary_less_than_comparison(const PackageID &) const + PALUDIS_ATTRIBUTE((warn_unused_result)); + std::size_t extra_hash_value() const + PALUDIS_ATTRIBUTE((warn_unused_result)); - virtual const std::shared_ptr<const Contents> contents() const; + virtual const std::shared_ptr<const Contents> contents() const; }; } |