Changeset 78eaa8 in git for factory/NTLconvert.cc


Ignore:
Timestamp:
Jul 24, 2019, 1:39:31 PM (5 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
20e7303a3d50b30117c53a232ad724297637ac0e
Parents:
fa1cd304b94fb2782b47874564b731a57670c34ccbb89a79113ccf8c4cf31dd700cba8927fe3623a
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2019-07-24 13:39:31+02:00
git-committer:
GitHub <noreply@github.com>2019-07-24 13:39:31+02:00
Message:
Merge pull request #943 from steenpass/execute

remove more occurrences of execute() (3)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/NTLconvert.cc

    rcbb89a7 r78eaa8  
    3333#include "NTLconvert.h"
    3434
     35#ifdef HAVE_OMALLOC
     36#define Alloc(L) omAlloc(L)
     37#define Free(A,L) omFreeSize(A,L)
     38#else
    3539#define Alloc(L) malloc(L)
    3640#define Free(A,L) free(A)
     41#endif
    3742
    3843void out_cf(const char *s1,const CanonicalForm &f,const char *s2);
Note: See TracChangeset for help on using the changeset viewer.