Fix some style

* src/abg-ir.h (decl_base::{get_location, set_location, get_name,
	set_name}): Re-style.
This commit is contained in:
Dodji Seketeli 2013-03-31 20:09:52 +02:00
parent 7513a91ff0
commit 56821b2e4b

View File

@ -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