From 3761f80592a6a73cea587922387a45cbfc32c9a3 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Mon, 18 Jan 2021 05:44:08 -0800 Subject: [PATCH] string_view: remove now unecessary comment --- libraries/libstratosphere/source/ncm/ncm_fs_utils.hpp | 2 +- stratosphere/ams_mitm/source/sysupdater/sysupdater_fs_utils.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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;