VirtualBox

Changeset 73935 in vbox for trunk


Ignore:
Timestamp:
Aug 28, 2018 9:25:24 PM (6 years ago)
Author:
vboxsync
Message:

iprt/string.h: Save 8 bytes in RTSTRSPACECORE on 64-bit systems.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/string.h

    r73914 r73935  
    31583158typedef struct RTSTRSPACECORE
    31593159{
    3160     /** Hash key. Don't touch. */
    3161     uint32_t        Key;
    31623160    /** Pointer to the left leaf node. Don't touch. */
    31633161    PRTSTRSPACECORE pLeft;
    31643162    /** Pointer to the left right node. Don't touch. */
    31653163    PRTSTRSPACECORE pRight;
    3166     /** Pointer to the list of string with the same key. Don't touch. */
     3164    /** Pointer to the list of string with the same hash key value. Don't touch. */
    31673165    PRTSTRSPACECORE pList;
     3166    /** Hash key. Don't touch. */
     3167    uint32_t        Key;
    31683168    /** Height of this tree: max(heigth(left), heigth(right)) + 1. Don't touch */
    31693169    unsigned char   uchHeight;
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette