Apply clang-format
This commit is contained in:
parent
03bf57a69e
commit
d02079a40f
@ -65,19 +65,14 @@ TEST(ranges_test, format_set) {
|
|||||||
"{\"one\", \"two\"}");
|
"{\"one\", \"two\"}");
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace adl
|
namespace adl {
|
||||||
{
|
|
||||||
struct box {
|
struct box {
|
||||||
int value;
|
int value;
|
||||||
};
|
};
|
||||||
|
|
||||||
auto begin(box & b) noexcept -> int * {
|
auto begin(box& b) noexcept -> int* { return std::addressof(b.value); }
|
||||||
return std::addressof(b.value);
|
|
||||||
}
|
|
||||||
|
|
||||||
auto end(box & b) noexcept -> int * {
|
auto end(box& b) noexcept -> int* { return std::addressof(b.value) + 1; }
|
||||||
return std::addressof(b.value) + 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
auto begin(const box& b) noexcept -> const int* {
|
auto begin(const box& b) noexcept -> const int* {
|
||||||
return std::addressof(b.value);
|
return std::addressof(b.value);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user