Misc white space and comment cleanups

While looking at something else, I noticed some spots that need
cleanup with respect to white space or comments.  This patch does just
that.  No big deal.

	* include/abg-ir.h (typedef type_or_decl_base): Cleanup comment.
	* src/abg-ir.cc (struct type_or_decl_base::priv): Fix comment.

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
This commit is contained in:
Dodji Seketeli 2016-06-10 19:43:02 +02:00
parent 09a24a4767
commit a1b07236bb
2 changed files with 2 additions and 3 deletions

View File

@ -932,8 +932,7 @@ equals(const decl_base&, const decl_base&, change_kind*);
class type_or_decl_base;
/// Convenience typedef for a shared pointer to @ref
/// type_or_decl_base.
/// A convenience typedef for a shared_ptr to @ref type_or_decl_base.
typedef shared_ptr<type_or_decl_base> type_or_decl_base_sptr;
/// The base class of both types and declarations.

View File

@ -2145,7 +2145,7 @@ struct type_or_decl_base::priv
env_(e),
translation_unit_()
{}
}; // end struct type_or_decl_base
}; // end struct type_or_decl_base::priv
/// Default constructor of @ref type_or_decl_base.
type_or_decl_base::type_or_decl_base()