Skip to content

Commit

Permalink
Update vendor
Browse files Browse the repository at this point in the history
  • Loading branch information
tekezo committed May 6, 2024
1 parent eab7b8c commit 61cbf4f
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 18 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

// pqrs::hid v2.14
// pqrs::hid v2.15

// (C) Copyright Takayama Fumihiko 2020.
// Distributed under the Boost Software License, Version 1.0.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ namespace manufacturer_string {
struct value_t : type_safe::strong_typedef<value_t, std::string>,
type_safe::strong_typedef_op::equality_comparison<value_t> {
using strong_typedef::strong_typedef;

constexpr auto operator<=>(const value_t& other) const {
return type_safe::get(*this) <=> type_safe::get(other);
}
};

inline std::ostream& operator<<(std::ostream& stream, const value_t& value) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ namespace product_string {
struct value_t : type_safe::strong_typedef<value_t, std::string>,
type_safe::strong_typedef_op::equality_comparison<value_t> {
using strong_typedef::strong_typedef;

constexpr auto operator<=>(const value_t& other) const {
return type_safe::get(*this) <=> type_safe::get(other);
}
};

inline std::ostream& operator<<(std::ostream& stream, const value_t& value) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

// pqrs::hid v2.14
// pqrs::hid v2.15

// (C) Copyright Takayama Fumihiko 2020.
// Distributed under the Boost Software License, Version 1.0.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ namespace manufacturer_string {
struct value_t : type_safe::strong_typedef<value_t, std::string>,
type_safe::strong_typedef_op::equality_comparison<value_t> {
using strong_typedef::strong_typedef;

constexpr auto operator<=>(const value_t& other) const {
return type_safe::get(*this) <=> type_safe::get(other);
}
};

inline std::ostream& operator<<(std::ostream& stream, const value_t& value) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ namespace product_string {
struct value_t : type_safe::strong_typedef<value_t, std::string>,
type_safe::strong_typedef_op::equality_comparison<value_t> {
using strong_typedef::strong_typedef;

constexpr auto operator<=>(const value_t& other) const {
return type_safe::get(*this) <=> type_safe::get(other);
}
};

inline std::ostream& operator<<(std::ostream& stream, const value_t& value) {
Expand Down

0 comments on commit 61cbf4f

Please sign in to comment.