Changeset 25513


Ignore:
Timestamp:
09/01/20 17:47:48 (5 years ago)
Author:
Mathieu Morlighem
Message:

CHG: fixing serial

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/shared/io/Marshalling/Marshalling.h

    r25512 r25513  
    1616        MARSHALLING_LOAD,
    1717        MARSHALLING_SIZE,
    18 #ifdef _HAVE_CODIPACK_
     18#if defined(_HAVE_CODIPACK_) && !defined(_WRAPPERS_)
    1919        AD_COUNTDOUBLES,
    2020        AD_REGISTERINPUT,
     
    113113                }
    114114};/*}}}*/
    115 #ifdef _HAVE_CODIPACK_
     115#if defined(_HAVE_CODIPACK_) && !defined(_WRAPPERS_)
    116116class CountDoublesFunctor:    public MarshallHandle{ /*{{{*/
    117117
     
    254254                case MARSHALLING_LOAD: {LoadCheckpointFunctor*  temp = xDynamicCast<LoadCheckpointFunctor*>(this);  temp->call(value); break;}
    255255                case MARSHALLING_SIZE: {SizeCheckpointFunctor*  temp = xDynamicCast<SizeCheckpointFunctor*>(this);  temp->call(value); break;}
    256 #ifdef _HAVE_CODIPACK_
     256#if defined(_HAVE_CODIPACK_) && !defined(_WRAPPERS_)
    257257                case AD_COUNTDOUBLES:  {CountDoublesFunctor*   temp = xDynamicCast<CountDoublesFunctor*>(this);    temp->call(value); break;}
    258258                case AD_REGISTERINPUT: {RegisterInputFunctor*  temp = xDynamicCast<RegisterInputFunctor*>(this);   temp->call(value); break;}
     
    268268                case MARSHALLING_LOAD: {LoadCheckpointFunctor*  temp = xDynamicCast<LoadCheckpointFunctor*>(this);  temp->call(value,size); break;}
    269269                case MARSHALLING_SIZE: {SizeCheckpointFunctor*  temp = xDynamicCast<SizeCheckpointFunctor*>(this);  temp->call(value,size); break;}
    270 #ifdef _HAVE_CODIPACK_
     270#if defined(_HAVE_CODIPACK_) && !defined(_WRAPPERS_)
    271271                case AD_COUNTDOUBLES:  {CountDoublesFunctor*   temp = xDynamicCast<CountDoublesFunctor*>(this);    temp->call(value,size); break;}
    272272                case AD_REGISTERINPUT: {RegisterInputFunctor*  temp = xDynamicCast<RegisterInputFunctor*>(this);   temp->call(value,size); break;}
Note: See TracChangeset for help on using the changeset viewer.