Atmosphere/libraries/libstratosphere/source/ncm
Léo Lam 496adb0018
Minor header fixes to reduce parsing issues with Clang (#1700)
* Work around Clang's incomplete C++20 support for omitting typename

* vapours: fix Clang error about missing return in constexpr function

* stratosphere: fix call to non-constexpr strlen in constexpr function

strlen being constexpr is a non-compliant GCC extension; Clang
explicitly rejects it: https://reviews.llvm.org/D23692

* stratosphere: add a bunch of missing override specifiers

* stratosphere: work around Clang consteval bug

Minimal example: https://godbolt.org/z/MoM64v93M

The issue seems to be that Clang does not consider f(x) to be a
constant expression if x comes from a template argument that isn't
a non-type auto template argument (???)

We can work around this by relaxing GetMessageHeaderForCheck (by using
constexpr instead of consteval). This produces no functional changes
because the result of GetMessageHeaderForCheck() is assigned to a
constexpr variable, so the result is guaranteed to be computed
at compile-time.

* stratosphere: fix missing require clauses in definitions

GCC not requiring the require clauses to be repeated for member
definitions is actually a compiler bug:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96830

Clang rejects declarations with missing require clauses.

* Fix ALWAYS_INLINE_LAMBDA and parameter list relative order

While GCC doesn't seem to care about the position of the always_inline
attribute relative to the parameter list, Clang is very picky
and requires the attribute to appear after the parameter list
(and before a trailing return type)

* stratosphere: fix static constexpr member variable with incomplete type

GCC accepts this for some reason (because of the lambda?) but Clang
correctly rejects this.
2021-11-06 18:19:34 -07:00
..
ncm_api.cpp ams: the copyright^H^H^H^H^H^H^Hmplex plane is the algebraic closure of the reals 2021-10-04 12:59:10 -07:00
ncm_content_id_utils.cpp ams: the copyright^H^H^H^H^H^H^Hmplex plane is the algebraic closure of the reals 2021-10-04 12:59:10 -07:00
ncm_content_info_utils.cpp ams: the copyright^H^H^H^H^H^H^Hmplex plane is the algebraic closure of the reals 2021-10-04 12:59:10 -07:00
ncm_content_management_utils.cpp strat: use m_ for member variables 2021-10-10 00:14:06 -07:00
ncm_content_manager_impl.cpp strat: use m_ for member variables 2021-10-10 00:14:06 -07:00
ncm_content_meta.cpp libstrat: enable -Wextra, -Werror 2021-10-06 15:20:48 -07:00
ncm_content_meta_database_impl.cpp Minor header fixes to reduce parsing issues with Clang (#1700) 2021-11-06 18:19:34 -07:00
ncm_content_meta_database_impl.hpp ams: the copyright^H^H^H^H^H^H^Hmplex plane is the algebraic closure of the reals 2021-10-04 12:59:10 -07:00
ncm_content_meta_database_impl_base.hpp strat: use m_ for member variables 2021-10-10 00:14:06 -07:00
ncm_content_meta_type.cpp ams: the copyright^H^H^H^H^H^H^Hmplex plane is the algebraic closure of the reals 2021-10-04 12:59:10 -07:00
ncm_content_meta_utils.cpp ams: the copyright^H^H^H^H^H^H^Hmplex plane is the algebraic closure of the reals 2021-10-04 12:59:10 -07:00
ncm_content_storage_impl.cpp strat: use m_ for member variables 2021-10-10 00:14:06 -07:00
ncm_content_storage_impl.hpp strat: use m_ for member variables 2021-10-10 00:14:06 -07:00
ncm_content_storage_impl_base.hpp strat: use m_ for member variables 2021-10-10 00:14:06 -07:00
ncm_fs_utils.cpp strat: use m_ for member variables 2021-10-10 00:14:06 -07:00
ncm_fs_utils.hpp strat: use m_ for member variables 2021-10-10 00:14:06 -07:00
ncm_host_content_storage_impl.cpp strat: use m_ for member variables 2021-10-10 00:14:06 -07:00
ncm_host_content_storage_impl.hpp strat: use m_ for member variables 2021-10-10 00:14:06 -07:00
ncm_install_task_base.cpp strat: use m_ for member variables 2021-10-10 00:14:06 -07:00
ncm_install_task_data.cpp strat: use m_ for member variables 2021-10-10 00:14:06 -07:00
ncm_make_path.cpp ams: the copyright^H^H^H^H^H^H^Hmplex plane is the algebraic closure of the reals 2021-10-04 12:59:10 -07:00
ncm_memory_report.cpp strat: use m_ for member variables 2021-10-10 00:14:06 -07:00
ncm_on_memory_content_meta_database_impl.cpp strat: use m_ for member variables 2021-10-10 00:14:06 -07:00
ncm_on_memory_content_meta_database_impl.hpp ams: the copyright^H^H^H^H^H^H^Hmplex plane is the algebraic closure of the reals 2021-10-04 12:59:10 -07:00
ncm_package_install_task.cpp strat: use m_ for member variables 2021-10-10 00:14:06 -07:00
ncm_package_install_task_base.cpp strat: use m_ for member variables 2021-10-10 00:14:06 -07:00
ncm_package_system_downgrade_task.cpp ams: the copyright^H^H^H^H^H^H^Hmplex plane is the algebraic closure of the reals 2021-10-04 12:59:10 -07:00
ncm_package_system_update_task.cpp strat: use m_ for member variables 2021-10-10 00:14:06 -07:00
ncm_placeholder_accessor.cpp strat: use m_ for member variables 2021-10-10 00:14:06 -07:00
ncm_placeholder_accessor.hpp strat: use m_ for member variables 2021-10-10 00:14:06 -07:00
ncm_read_only_content_storage_impl.cpp strat: use m_ for member variables 2021-10-10 00:14:06 -07:00
ncm_read_only_content_storage_impl.hpp ams: the copyright^H^H^H^H^H^H^Hmplex plane is the algebraic closure of the reals 2021-10-04 12:59:10 -07:00
ncm_registered_host_content.cpp strat: use m_ for member variables 2021-10-10 00:14:06 -07:00
ncm_remote_content_manager_impl.hpp libstrat: enable -Wextra, -Werror 2021-10-06 15:20:48 -07:00
ncm_remote_content_meta_database_impl.hpp strat: use m_ for member variables 2021-10-10 00:14:06 -07:00
ncm_remote_content_storage_impl.hpp strat: use m_ for member variables 2021-10-10 00:14:06 -07:00
ncm_storage_utils.cpp ams: the copyright^H^H^H^H^H^H^Hmplex plane is the algebraic closure of the reals 2021-10-04 12:59:10 -07:00
ncm_submission_package_install_task.cpp strat: use m_ for member variables 2021-10-10 00:14:06 -07:00