Changeset 891122 in git for libpolys/misc/int64vec.cc
- Timestamp:
- Jul 16, 2013, 4:56:07 PM (10 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- 22c7f081eb5086ea769d4b1bf61d4ca3f4a88b04
- Parents:
- d220af17ce2ecb53dc744ab69471b35e99971cc5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/misc/int64vec.cc
rd220af1 r891122 100 100 char * int64vec::String(int dim) 101 101 { 102 return omStrDup(iv64String(0, 0, dim)); 103 } 104 105 void int64vec::show(int mat,int spaces) 106 { 102 return iv64String(0, 0, dim); 103 } 104 105 void int64vec::show(int notmat,int spaces) 106 { 107 char *s=iv64String(notmat,spaces); 107 108 if (spaces>0) 108 109 { 109 110 PrintNSpaces(spaces); 110 PrintS( iv64String(mat,spaces));111 PrintS(s); 111 112 } 112 113 else 113 PrintS(iv64String(mat,0)); 114 { 115 PrintS(s); 116 } 117 omFree(s); 114 118 } 115 119
Note: See TracChangeset
for help on using the changeset viewer.