Parcourir la source

[2831] Make a coding style update

Mukund Sivaraman il y a 12 ans
Parent
commit
229916f0c8
1 fichiers modifiés avec 1 ajouts et 2 suppressions
  1. 1 2
      src/lib/util/memory_segment_mapped.cc

+ 1 - 2
src/lib/util/memory_segment_mapped.cc

@@ -64,8 +64,7 @@ struct MemorySegmentMapped::Impl {
         const size_t new_size = prev_size * 2;
         assert(new_size != 0); // assume grow fails before size overflow
 
-        if (!BaseSegment::grow(filename_.c_str(), new_size - prev_size))
-        {
+        if (!BaseSegment::grow(filename_.c_str(), new_size - prev_size)) {
             throw std::bad_alloc();
         }