From a1504c0df46f3eadc8ec1d0df7595963b64bf2c3 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 --- libstratosphere/source/ncm/ncm_fs_utils.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libstratosphere/source/ncm/ncm_fs_utils.hpp b/libstratosphere/source/ncm/ncm_fs_utils.hpp index b6dcb0f8..d81b5518 100644 --- a/libstratosphere/source/ncm/ncm_fs_utils.hpp +++ b/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;