mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-10 06:01:52 +00:00
string_view: remove now unecessary comment
This commit is contained in:
parent
9878c18e47
commit
3761f80592
2 changed files with 2 additions and 2 deletions
|
@ -22,7 +22,7 @@ namespace ams::ncm::impl {
|
||||||
|
|
||||||
class PathView {
|
class PathView {
|
||||||
private:
|
private:
|
||||||
util::string_view path; /* Nintendo uses util::string_view here. */
|
util::string_view path;
|
||||||
public:
|
public:
|
||||||
PathView(util::string_view p) : path(p) { /* ...*/ }
|
PathView(util::string_view p) : path(p) { /* ...*/ }
|
||||||
bool HasPrefix(util::string_view prefix) const;
|
bool HasPrefix(util::string_view prefix) const;
|
||||||
|
|
|
@ -20,7 +20,7 @@ namespace ams::mitm::sysupdater {
|
||||||
|
|
||||||
class PathView {
|
class PathView {
|
||||||
private:
|
private:
|
||||||
util::string_view path; /* Nintendo uses util::string_view here. */
|
util::string_view path;
|
||||||
public:
|
public:
|
||||||
PathView(util::string_view p) : path(p) { /* ...*/ }
|
PathView(util::string_view p) : path(p) { /* ...*/ }
|
||||||
bool HasPrefix(util::string_view prefix) const;
|
bool HasPrefix(util::string_view prefix) const;
|
||||||
|
|
Loading…
Reference in a new issue