diff --git a/libraries/libstratosphere/source/ncm/ncm_fs_utils.hpp b/libraries/libstratosphere/source/ncm/ncm_fs_utils.hpp index b6dcb0f88..d81b55188 100644 --- a/libraries/libstratosphere/source/ncm/ncm_fs_utils.hpp +++ b/libraries/libstratosphere/source/ncm/ncm_fs_utils.hpp @@ -22,7 +22,7 @@ namespace ams::ncm::impl { class PathView { private: - util::string_view path; /* Nintendo uses util::string_view here. */ + util::string_view path; public: PathView(util::string_view p) : path(p) { /* ...*/ } bool HasPrefix(util::string_view prefix) const; diff --git a/stratosphere/ams_mitm/source/sysupdater/sysupdater_fs_utils.hpp b/stratosphere/ams_mitm/source/sysupdater/sysupdater_fs_utils.hpp index 8aeed741d..21222f5c9 100644 --- a/stratosphere/ams_mitm/source/sysupdater/sysupdater_fs_utils.hpp +++ b/stratosphere/ams_mitm/source/sysupdater/sysupdater_fs_utils.hpp @@ -20,7 +20,7 @@ namespace ams::mitm::sysupdater { class PathView { private: - util::string_view path; /* Nintendo uses util::string_view here. */ + util::string_view path; public: PathView(util::string_view p) : path(p) { /* ...*/ } bool HasPrefix(util::string_view prefix) const;