Changeset 374 for trunk/src/stl


Ignore:
Timestamp:
05/26/15 17:35:06 (10 years ago)
Author:
epyon
Message:
  • MASSIVE commit
  • common.hh - size_t, ptrdiff_t, nv:: namespace, NV_ALIGN_OF and basic template tools
  • STL - algorithm.hh, iterator.hh, limits.hh, numeric.hh and type_info.hh
  • STL - updates to memory, array and string
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/stl/string.cc

    r368 r374  
    2828}
    2929
    30 size_t nv::sint32_to_buffer( sint32 n, char* str )
     30nv::size_t nv::sint32_to_buffer( sint32 n, char* str )
    3131{
    3232        char* s = str;
     
    4343}
    4444
    45 size_t nv::sint64_to_buffer( sint64 n, char* str )
     45nv::size_t nv::sint64_to_buffer( sint64 n, char* str )
    4646{
    4747        char* s = str;
     
    5858}
    5959
    60 size_t nv::uint32_to_buffer( uint32 n, char* str )
     60nv::size_t nv::uint32_to_buffer( uint32 n, char* str )
    6161{
    6262        char* s = str;
     
    7171}
    7272
    73 size_t nv::uint64_to_buffer( uint64 n, char* str )
     73nv::size_t nv::uint64_to_buffer( uint64 n, char* str )
    7474{
    7575        char* s = str;
     
    8484}
    8585
    86 size_t nv::f32_to_buffer( f32 n, char* str )
     86nv::size_t nv::f32_to_buffer( f32 n, char* str )
    8787{
    8888#if NV_COMPILER == NV_MSVC
     
    9595}
    9696
    97 size_t nv::f64_to_buffer( f64 n, char* str )
     97nv::size_t nv::f64_to_buffer( f64 n, char* str )
    9898{
    9999#if NV_COMPILER == NV_MSVC
Note: See TracChangeset for help on using the changeset viewer.