VirtualBox

Changeset 1641 in vbox


Ignore:
Timestamp:
Mar 22, 2007 5:42:06 PM (18 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
19769
Message:

warnings.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/include/Matching.h

    r1 r1641  
    8686    union Widest
    8787    {
    88         signed long long ll;
    89         unsigned long long ull;
     88        int64_t ll;
     89        uint64_t ull;
    9090    };
    9191
     
    178178            if (Lim::is_signed)
    179179            {
    180                 min.ll = (signed long long) Lim::min();
    181                 max.ll = (signed long long) Lim::max();
     180                min.ll = (int64_t) Lim::min();
     181                max.ll = (int64_t) Lim::max();
    182182            }
    183183            else
    184184            {
    185                 min.ull = (unsigned long long) Lim::min();
    186                 max.ull = (unsigned long long) Lim::max();
     185                min.ull = (uint64_t) Lim::min();
     186                max.ull = (uint64_t) Lim::max();
    187187            }
    188188        }
     
    202202        AssertReturn (Lim::is_integer, (void) 0);
    203203        AssertReturn (
    204             (Lim::is_signed && Lim::digits <= numeric_limits <signed long long>::digits) ||
    205             (!Lim::is_signed && Lim::digits <= numeric_limits <unsigned long long>::digits),
     204            (Lim::is_signed && Lim::digits <= numeric_limits <int64_t>::digits) ||
     205            (!Lim::is_signed && Lim::digits <= numeric_limits <uint64_t>::digits),
    206206            (void) 0);
    207207
Note: See TracChangeset for help on using the changeset viewer.

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