mirror of
git://sourceware.org/git/libabigail.git
synced 2024-12-16 06:54:37 +00:00
Remove excess whitespace.
This patch removes some excess blank lines and a space after the prefix ++ operator. * src/abg-suppression.cc: Eliminate double blank lines. (read_parameter_spec_from_string): Eliminate space between ++ operator and its operand. Reviewed-by: Matthias Maennich <maennich@google.com> Signed-off-by: Giuliano Procida <gprocida@google.com> Signed-off-by: Dodji Seketeli <dodji@redhat.com>
This commit is contained in:
parent
246ca20049
commit
de9682e5f7
@ -498,7 +498,6 @@ void
|
||||
type_suppression::set_consider_type_kind(bool f)
|
||||
{priv_->consider_type_kind_ = f;}
|
||||
|
||||
|
||||
/// Setter of the kind of type this suppression is about.
|
||||
///
|
||||
/// Note that this will be considered during evaluation of the
|
||||
@ -803,7 +802,6 @@ type_suppression::suppresses_diff(const diff* diff) const
|
||||
range_end_val))
|
||||
break;
|
||||
|
||||
|
||||
unsigned range_begin =
|
||||
(range_begin_val < 0) ? first_type_size : range_begin_val;
|
||||
|
||||
@ -1255,7 +1253,6 @@ type_suppression::insertion_range::integer_boundary_sptr
|
||||
type_suppression::insertion_range::create_integer_boundary(int value)
|
||||
{return integer_boundary_sptr(new integer_boundary(value));}
|
||||
|
||||
|
||||
/// Create a function call expression boundary.
|
||||
///
|
||||
/// The return value of this function is to be used as a boundary for
|
||||
@ -3117,7 +3114,7 @@ read_parameter_spec_from_string(const string& str)
|
||||
if (str[cur] == '/')
|
||||
{
|
||||
is_regex = true;
|
||||
++ cur;
|
||||
++cur;
|
||||
}
|
||||
|
||||
// look for the type name (regex)
|
||||
@ -3949,7 +3946,6 @@ variable_suppression::suppresses_variable_symbol(const elf_symbol* sym,
|
||||
else
|
||||
no_symbol_name = true;
|
||||
|
||||
|
||||
// Consider the symbol version.
|
||||
if (!get_symbol_version().empty())
|
||||
{
|
||||
@ -4374,7 +4370,6 @@ file_suppression_sptr
|
||||
is_file_suppression(const suppression_sptr s)
|
||||
{return dynamic_pointer_cast<file_suppression>(s);}
|
||||
|
||||
|
||||
/// Test if a given file path is "suppressed" by at least one file
|
||||
/// suppression specification among a vector of suppression
|
||||
/// specifications.
|
||||
|
Loading…
Reference in New Issue
Block a user