Expected coroutines support
[folly.git] / folly / Memory.h
index 39b868c18058f499c73745d1a597a0e1e05c2809..c6c3ea21ddab6037dc034e6bbccbd8180a98be99 100644 (file)
@@ -146,7 +146,7 @@ namespace detail {
 inline void SysFree(void* p) {
   ::free(p);
 }
-}
+} // namespace detail
 
 using SysBufferDeleter = static_function_deleter<void, &detail::SysFree>;
 using SysBufferUniquePtr = std::unique_ptr<void, SysBufferDeleter>;
@@ -171,7 +171,9 @@ class SysAlloc {
  public:
   void* allocate(size_t size) {
     void* p = ::malloc(size);
-    if (!p) throw std::bad_alloc();
+    if (!p) {
+      throw std::bad_alloc();
+    }
     return p;
   }
   void deallocate(void* p) {
@@ -340,7 +342,9 @@ class allocator_delete
   }
 
   void operator()(pointer p) const {
-    if (!p) return;
+    if (!p) {
+      return;
+    }
     const_cast<allocator_delete*>(this)->destroy(p);
     const_cast<allocator_delete*>(this)->deallocate(p, 1);
   }
@@ -546,4 +550,4 @@ class enable_shared_from_this : public std::enable_shared_from_this<T> {
 
 #endif
 
-}  // namespace folly
+} // namespace folly