1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-09-19 21:43:29 +01:00

string_view: remove now unecessary comment

This commit is contained in:
Michael Scire 2021-01-18 05:44:08 -08:00 committed by SciresM
parent 9878c18e47
commit 3761f80592
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;