Changeset 5ae803 in git
- Timestamp:
- Jul 12, 2018, 11:08:22 AM (5 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 73f3dcc77b73b80e45572e6e7781c538ebe7c147
- Parents:
- 170190d9516e804ec3e9fdd487afec7ada85d9ec
- Location:
- libpolys/coeffs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/coeffs/flintcf_Q.cc
r170190 r5ae803 48 48 { 49 49 return (r->type==n); 50 }51 static void KillChar(coeffs r)52 {53 // not yet54 50 } 55 51 static void SetChar(const coeffs r) … … 560 556 } 561 557 #endif 558 static void KillChar(coeffs cf) 559 { 560 omFree(cf->pParameterNames[0]); 561 omFreeSize(cf->pParameterNames,sizeof(char*)); 562 } 562 563 BOOLEAN flintQ_InitChar(coeffs cf, void * infoStruct) 563 564 { -
libpolys/coeffs/flintcf_Zn.cc
r170190 r5ae803 58 58 &&(strcmp(r->pParameterNames[0],pp->name)==0); 59 59 } 60 static void KillChar(coeffs r) 61 { 62 // not yet 60 static void KillChar(coeffs cf) 61 { 62 omFree(cf->pParameterNames[0]); 63 omFreeSize(cf->pParameterNames,sizeof(char*)); 63 64 } 64 65 static void SetChar(const coeffs r)
Note: See TracChangeset
for help on using the changeset viewer.