mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-10 23:57:03 +08:00
Fix indentation in scoped_mmap.h
gdb/ChangeLog: * common/scoped_mmap.h (class scoped_mmap): Fix indentation.
This commit is contained in:
@ -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>
|
2018-07-24 Tom Tromey <tom@tromey.com>
|
||||||
|
|
||||||
* utils.c (malloc, realloc, free): Don't declare.
|
* utils.c (malloc, realloc, free): Don't declare.
|
||||||
|
@ -38,6 +38,7 @@ public:
|
|||||||
{
|
{
|
||||||
m_mem = mmap (addr, m_length, prot, flags, fd, offset);
|
m_mem = mmap (addr, m_length, prot, flags, fd, offset);
|
||||||
}
|
}
|
||||||
|
|
||||||
~scoped_mmap ()
|
~scoped_mmap ()
|
||||||
{
|
{
|
||||||
if (m_mem != MAP_FAILED)
|
if (m_mem != MAP_FAILED)
|
||||||
|
Reference in New Issue
Block a user