string_view: remove now unecessary comment

This commit is contained in:
Michael Scire 2021-01-18 05:44:08 -08:00
parent 54a1ba2a7e
commit 6a2f8e8344
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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;