mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-09 21:51:45 +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 {
|
||||
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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue