Changeset 052b762 in git
- Timestamp:
- Apr 7, 1998, 7:51:50 PM (25 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '00e2e9c41af3fde1273eb3633f4c0c7c3db2579d')
- Children:
- 3a20c153bb020cf1cd6b72a6f990e8fa04dd80c4
- Parents:
- cf3ff4e9ea97293db0224e00108a04e2e7b79740
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/intvec.cc
rcf3ff4 r052b762 2 2 * Computer Algebra System SINGULAR * 3 3 *****************************************/ 4 /* $Id: intvec.cc,v 1. 6 1997-04-30 15:25:28Singular Exp $ */4 /* $Id: intvec.cc,v 1.7 1998-04-07 17:51:50 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: class intvec: lists/vectors of integers … … 39 39 } 40 40 v = (int *)Alloc(sizeof(int)*row); 41 if (v!=NULL)41 //if (v!=NULL) 42 42 { 43 43 for (int i=0; i<row; i++) … … 47 47 } 48 48 } 49 else50 {51 Werror("internal error: creating intvec(%d)",row);52 row=0;53 }49 //else 50 //{ 51 // Werror("internal error: creating intvec(%d)",row); 52 // row=0; 53 //} 54 54 } 55 55
Note: See TracChangeset
for help on using the changeset viewer.