This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Fix indentation in scoped_mmap.h


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=4b17aefe753a8d62ccd491b6a39dabdc69e91445

commit 4b17aefe753a8d62ccd491b6a39dabdc69e91445
Author: Simon Marchi <simon.marchi@ericsson.com>
Date:   Tue Jul 24 14:14:17 2018 -0400

    Fix indentation in scoped_mmap.h
    
    gdb/ChangeLog:
    
    	* common/scoped_mmap.h (class scoped_mmap): Fix indentation.

Diff:
---
 gdb/ChangeLog            |  4 ++++
 gdb/common/scoped_mmap.h | 39 ++++++++++++++++++++-------------------
 2 files changed, 24 insertions(+), 19 deletions(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 11f78c5..f26fc43 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2018-07-24  Simon Marchi  <simon.marchi@ericsson.com>
+
+	* common/scoped_mmap.h (class scoped_mmap): Fix indentation.
+
 2018-07-24  Tom Tromey  <tom@tromey.com>
 
 	* utils.c (malloc, realloc, free): Don't declare.
diff --git a/gdb/common/scoped_mmap.h b/gdb/common/scoped_mmap.h
index 739cc70..6070c37 100644
--- a/gdb/common/scoped_mmap.h
+++ b/gdb/common/scoped_mmap.h
@@ -35,34 +35,35 @@ public:
   scoped_mmap () noexcept : m_mem (MAP_FAILED), m_length (0) {}
   scoped_mmap (void *addr, size_t length, int prot, int flags, int fd,
 	       off_t offset) noexcept : m_length (length)
-    {
-      m_mem = mmap (addr, m_length, prot, flags, fd, offset);
-    }
+  {
+    m_mem = mmap (addr, m_length, prot, flags, fd, offset);
+  }
+
   ~scoped_mmap ()
-    {
-      if (m_mem != MAP_FAILED)
-	munmap (m_mem, m_length);
-    }
+  {
+    if (m_mem != MAP_FAILED)
+      munmap (m_mem, m_length);
+  }
 
   DISABLE_COPY_AND_ASSIGN (scoped_mmap);
 
   void *release () noexcept
-    {
-      void *mem = m_mem;
-      m_mem = MAP_FAILED;
-      m_length = 0;
-      return mem;
-    }
+  {
+    void *mem = m_mem;
+    m_mem = MAP_FAILED;
+    m_length = 0;
+    return mem;
+  }
 
   void reset (void *addr, size_t length, int prot, int flags, int fd,
 	      off_t offset) noexcept
-    {
-      if (m_mem != MAP_FAILED)
-	munmap (m_mem, m_length);
+  {
+    if (m_mem != MAP_FAILED)
+      munmap (m_mem, m_length);
 
-      m_length = length;
-      m_mem = mmap (addr, m_length, prot, flags, fd, offset);
-    }
+    m_length = length;
+    m_mem = mmap (addr, m_length, prot, flags, fd, offset);
+  }
 
   size_t size () const noexcept { return m_length; }
   void *get () const noexcept { return m_mem; }


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]