Skip to content

Commit ce7f5f6

Browse files
committedApr 27, 2024··
Update vendor
1 parent 0251eba commit ce7f5f6

File tree

2 files changed

+10
-2
lines changed
  • example/vendor/cget/pkg/pqrs-org__cpp-osx-kern_return/install/include/pqrs/osx
  • tests/vendor/cget/pkg/pqrs-org__cpp-osx-kern_return/install/include/pqrs/osx

2 files changed

+10
-2
lines changed
 

Diff for: ‎example/vendor/cget/pkg/pqrs-org__cpp-osx-kern_return/install/include/pqrs/osx/kern_return.hpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma once
22

3-
// pqrs::osx::kern_return v1.0
3+
// pqrs::osx::kern_return v1.1
44

55
// (C) Copyright Takayama Fumihiko 2020.
66
// Distributed under the Boost Software License, Version 1.0.
@@ -104,5 +104,9 @@ class kern_return final {
104104
inline std::ostream& operator<<(std::ostream& stream, const kern_return& value) {
105105
return stream << value.to_string();
106106
}
107+
108+
inline auto format_as(const kern_return& value) {
109+
return value.to_string();
110+
}
107111
} // namespace osx
108112
} // namespace pqrs

Diff for: ‎tests/vendor/cget/pkg/pqrs-org__cpp-osx-kern_return/install/include/pqrs/osx/kern_return.hpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma once
22

3-
// pqrs::osx::kern_return v1.0
3+
// pqrs::osx::kern_return v1.1
44

55
// (C) Copyright Takayama Fumihiko 2020.
66
// Distributed under the Boost Software License, Version 1.0.
@@ -104,5 +104,9 @@ class kern_return final {
104104
inline std::ostream& operator<<(std::ostream& stream, const kern_return& value) {
105105
return stream << value.to_string();
106106
}
107+
108+
inline auto format_as(const kern_return& value) {
109+
return value.to_string();
110+
}
107111
} // namespace osx
108112
} // namespace pqrs

0 commit comments

Comments
 (0)
Please sign in to comment.