Changeset 58


Ignore:
Timestamp:
05/29/13 23:13:25 (12 years ago)
Author:
epyon
Message:
  • compilation fix
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/nv/types.hh

    r57 r58  
    219219                        // NOTE: if offsetof behaves badly, check offset_of in common.hh
    220220                {
    221                         flags = FCONTAINER |
    222                                 ( std::is_pointer<TFIELD::value_type>::value ? FPOINTER : 0 ) |
    223                                 ( std::is_pod<TFIELD::value_type>::value ? FSIMPLETYPE : 0 );
     221                        flags = TF_CONTAINER |
     222                                ( std::is_pointer<TFIELD::value_type>::value ? TF_POINTER : 0 ) |
     223                                ( std::is_pod<TFIELD::value_type>::value ? TF_SIMPLETYPE : 0 );
    224224                }
    225225
     
    234234                {
    235235                        flags =
    236                                 ( std::is_pointer<TFIELD>::value ? FPOINTER : 0 ) |
    237                                 ( std::is_pod<TFIELD>::value ? FSIMPLETYPE : 0 );
     236                                ( std::is_pointer<TFIELD>::value ? TF_POINTER : 0 ) |
     237                                ( std::is_pod<TFIELD>::value ? TF_SIMPLETYPE : 0 );
    238238                }
    239239
Note: See TracChangeset for help on using the changeset viewer.