clang-format

This commit is contained in:
Steven Dee (Jōshin) 2024-08-30 08:44:42 -07:00
parent 72a9984055
commit 1ba21bd5a8
No known key found for this signature in database

View file

@ -9,7 +9,8 @@
#include "unique_ptr.h"
// XXX currently needed to use placement-new syntax (move to cxx.inc?)
void* operator new(size_t, void*) noexcept;
void*
operator new(size_t, void*) noexcept;
namespace ctl {
@ -30,7 +31,7 @@ struct ptr_ref
using type = T&;
};
template <>
template<>
struct ptr_ref<void>
{
using type = void;