Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 17, 2009, 11:53:35 PM (15 years ago)
Author:
rgrieder
Message:

Found a few more C-Style casts.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/util/Math.h

    r3280 r3300  
    122122    inline int round(T x)
    123123    {
    124         return (int)(x + 0.5);
     124        return static_cast<int>(x + 0.5);
    125125    }
    126126
Note: See TracChangeset for help on using the changeset viewer.