Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Byoungro So <byoungro.so@intel.com>
  • Loading branch information
bso-intel committed Feb 6, 2024
1 parent a309a8d commit 537491d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sycl/include/sycl/detail/string_view.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ class string_view {
const std::string_view rhs) noexcept {
return rhs == lhs.data();
}
friend bool operator==(const std::string_view &lhs,
const string_view rhs) noexcept {
friend bool operator==(const std::string_view lhs,
const string_view &rhs) noexcept {
return lhs == rhs.data();
}
};
Expand Down

0 comments on commit 537491d

Please sign in to comment.