Changeset 1b20da0 in mainline for kernel/generic/include/adt/avl.h


Ignore:
Timestamp:
2018-02-28T17:52:03Z (7 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3061bc1
Parents:
df6ded8
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:26:03)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:52:03)
Message:

style: Remove trailing whitespace on non-empty lines, in certain file types.

Command used: tools/srepl '\([^[:space:]]\)\s\+$' '\1' -- *.c *.h *.py *.sh *.s *.S *.ag

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/adt/avl.h

    rdf6ded8 r1b20da0  
    6262struct avltree_node
    6363{
    64         /** 
     64        /**
    6565         * Pointer to the left descendant of this node.
    6666         *
     
    7070        struct avltree_node *lft;
    7171       
    72         /** 
     72        /**
    7373         * Pointer to the right descendant of this node.
    7474         *
     
    8282       
    8383        /** Node's key. */
    84         avltree_key_t key; 
     84        avltree_key_t key;
    8585       
    8686        /**
     
    9797        struct avltree_node *root;
    9898
    99         /** 
     99        /**
    100100         * Base of the tree is a value that is smaller or equal than every value
    101101         * in the tree (valid for positive keys otherwise ignore this atribute).
    102          * 
     102         *
    103103         * The base is added to the current key when a new node is inserted into
    104104         * the tree. The base is changed to the key of the node which is deleted
    105105         * with avltree_delete_min().
    106106         */
    107         avltree_key_t base; 
     107        avltree_key_t base;
    108108};
    109109
Note: See TracChangeset for help on using the changeset viewer.