Ignore:
Timestamp:
2020-12-14T20:41:53Z (3 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
02fe42e
Parents:
1382446
git-author:
Jiri Svoboda <jiri@…> (2020-12-14 20:33:54)
git-committer:
Jiri Svoboda <jiri@…> (2020-12-14 20:41:53)
Message:

Fix spacing in single-line comments using latest ccheck

This found incorrectly formatted section comments (with blocks of
asterisks or dashes). I strongly believe against using section comments
but I am not simply removing them since that would probably be
controversial.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/bithenge/src/expression.c

    r1382446 rd1582b50  
    6767}
    6868
    69 /***************** binary_expression                         *****************/
     69/*
     70 * binary_expression
     71 */
    7072
    7173typedef struct {
     
    281283}
    282284
    283 /***************** in_node_expression                        *****************/
     285/*
     286 * in_node_expression
     287 */
    284288
    285289static errno_t in_node_evaluate(bithenge_expression_t *self,
     
    316320}
    317321
    318 /***************** current_node_expression                   *****************/
     322/*
     323 * current_node_expression
     324 */
    319325
    320326static errno_t current_node_evaluate(bithenge_expression_t *self,
     
    347353}
    348354
    349 /***************** param_expression                          *****************/
     355/*
     356 * param_expression
     357 */
    350358
    351359typedef struct {
     
    408416}
    409417
    410 /***************** const_expression                          *****************/
     418/*
     419 * const_expression
     420 */
    411421
    412422typedef struct {
     
    478488}
    479489
    480 /***************** scope_member_expression                   *****************/
     490/*
     491 * scope_member_expression
     492 */
    481493
    482494typedef struct {
     
    559571}
    560572
    561 /***************** subblob_expression                        *****************/
     573/*
     574 * subblob_expression
     575 */
    562576
    563577typedef struct {
     
    685699}
    686700
    687 /***************** param_wrapper                             *****************/
     701/*
     702 * param_wrapper
     703 */
    688704
    689705typedef struct {
     
    843859}
    844860
    845 /***************** expression_transform           *****************/
     861/*
     862 * expression_transform
     863 */
    846864
    847865/* Also used by inputless_transform. */
     
    921939}
    922940
    923 /***************** inputless_transform            *****************/
     941/*
     942 * inputless_transform
     943 */
    924944
    925945static errno_t inputless_transform_prefix_length(bithenge_transform_t *base,
     
    977997}
    978998
    979 /***************** concat_blob                    *****************/
     999/*
     1000 * concat_blob
     1001 */
    9801002
    9811003typedef struct {
Note: See TracChangeset for help on using the changeset viewer.