mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 22:44:49 +00:00
ICU-4605 Add better documentation when doing code coverage.
X-SVN-Rev: 18082
This commit is contained in:
parent
cd29a6a27f
commit
09ccf79089
1 changed files with 4 additions and 8 deletions
|
@ -1311,14 +1311,12 @@ u_printf_parse(const u_printf_stream_handler *streamHandler,
|
|||
/* read the width from the argument list */
|
||||
info->fWidth = va_arg(ap, int32_t);
|
||||
}
|
||||
else {
|
||||
/* handle positional parameter */
|
||||
}
|
||||
/* else handle positional parameter */
|
||||
|
||||
/* if it's negative, take the absolute value and set left alignment */
|
||||
if(info->fWidth < 0) {
|
||||
info->fWidth *= -1;
|
||||
info->fLeft = TRUE;
|
||||
info->fWidth *= -1; /* Make positive */
|
||||
info->fLeft = TRUE;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1328,9 +1326,7 @@ u_printf_parse(const u_printf_stream_handler *streamHandler,
|
|||
/* read the precision from the argument list */
|
||||
info->fPrecision = va_arg(ap, int32_t);
|
||||
}
|
||||
else {
|
||||
/* handle positional parameter */
|
||||
}
|
||||
/* else handle positional parameter */
|
||||
|
||||
/* if it's negative, set it to zero */
|
||||
if(info->fPrecision < 0)
|
||||
|
|
Loading…
Add table
Reference in a new issue