string_view: remove now unecessary comment

This commit is contained in:
Michael Scire 2021-01-18 05:44:08 -08:00
parent 28d9b78ff8
commit a1504c0df4

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;