mirror of
git://sourceware.org/git/libabigail.git
synced 2025-03-06 06:37:31 +00:00
Fix some style
* src/abg-ir.h (decl_base::{get_location, set_location, get_name, set_name}): Re-style.
This commit is contained in:
parent
7513a91ff0
commit
56821b2e4b
16
src/abg-ir.h
16
src/abg-ir.h
@ -133,27 +133,19 @@ public:
|
||||
|
||||
location
|
||||
get_location() const
|
||||
{
|
||||
return m_location;
|
||||
}
|
||||
{return m_location;}
|
||||
|
||||
void
|
||||
set_location(const location&l)
|
||||
{
|
||||
m_location = l;
|
||||
}
|
||||
{m_location = l;}
|
||||
|
||||
const string&
|
||||
get_name() const
|
||||
{
|
||||
return m_name;
|
||||
}
|
||||
{return m_name;}
|
||||
|
||||
void
|
||||
set_name(const string& n)
|
||||
{
|
||||
m_name = n;
|
||||
}
|
||||
{m_name = n;}
|
||||
|
||||
scope_decl*
|
||||
get_scope() const
|
||||
|
Loading…
Reference in New Issue
Block a user