Format with clangfmt
diff --git a/include/cxx.h b/include/cxx.h
index 2ffacc5..f7decd8 100644
--- a/include/cxx.h
+++ b/include/cxx.h
@@ -132,8 +132,7 @@
   T *operator->() noexcept { return this->ptr; }
   T &operator*() noexcept { return *this->ptr; }
 
-  template <typename... Fields>
-  static Box in_place(Fields&&... fields) {
+  template <typename... Fields> static Box in_place(Fields &&... fields) {
     Box box;
     box.uninit();
     ::new (box.ptr) T{std::forward<Fields>(fields)...};