Browse Source

[2831] Make a coding style update

Mukund Sivaraman 12 years ago
parent
commit
229916f0c8
1 changed files with 1 additions and 2 deletions
  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();
         }