Changeset cd73d1 in git for Singular/ipshell.h


Ignore:
Timestamp:
Apr 4, 2016, 7:01:43 PM (8 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '2a584933abf2a2d3082034c7586d38bb6de1a30a')
Children:
562b8aa65c17482d4bc6eb8332aab2af93e3806e
Parents:
a94fcf8caf88c19db9ef8352748fc35986436105
Message:
const for some tables
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/ipshell.h

    ra94fcf8 rcd73d1  
    256256                        leftv a,  ///< [in]  argument
    257257                        int op,   ///< [in]  operation
    258                         struct sValCmd1* dA1, ///< [in] table of possible proc
     258                        const struct sValCmd1* dA1, ///< [in] table of possible proc
    259259                                                  ///< assumes dArith1[0].cmd==op
    260260                        int at,   ///< [in] a->Typ()
    261                         struct sConvertTypes *dConvertTypes ///< [in] table of type conversions
     261                        const struct sConvertTypes *dConvertTypes ///< [in] table of type conversions
    262262                        );
    263263/// apply an operation 'op' to arguments a and a->next
     
    266266                        leftv a,  ///< [in]  2 arguments
    267267                        int op,   ///< [in]  operation
    268                         struct sValCmd2* dA2,///< [in] table of possible proc
     268                        const struct sValCmd2* dA2,///< [in] table of possible proc
    269269                                   ///< assumes dA2[0].cmd==op
    270270                        int at,    ///< [in] a->Typ()
    271                         struct sConvertTypes *dConvertTypes ///< [in] table of type conversions
     271                        const struct sConvertTypes *dConvertTypes ///< [in] table of type conversions
    272272                        );
    273273/// apply an operation 'op' to arguments a, a->next and a->next->next
     
    276276                        leftv a,   ///< [in]  3 arguments
    277277                        int op,    ///< [in]  operation
    278                         struct sValCmd3* dA3,///< [in] table of possible proc
     278                        const struct sValCmd3* dA3,///< [in] table of possible proc
    279279                                   ///< assumes dA3[0].cmd==op
    280280                        int at,    ///< [in] a->Typ()
    281                         struct sConvertTypes *dConvertTypes ///< [in] table of type conversions
     281                        const struct sConvertTypes *dConvertTypes ///< [in] table of type conversions
    282282                        );
    283283
Note: See TracChangeset for help on using the changeset viewer.