- Timestamp:
- 11/07/11 01:55:32 (13 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/external-alma/atnf/PKSIO/PKSMS2reader.cc
r1880 r2343 1398 1398 Int n = s.freq( delim ) + 1 ; 1399 1399 Vector<String> antlist ; 1400 string sl[n] ;1400 string *sl = new string[n] ; 1401 1401 Int numSubstr = split( s, sl, n, "," ); 1402 1402 antlist.resize( numSubstr ) ; … … 1406 1406 } 1407 1407 //cerr << "antlist = " << antlist << endl ; 1408 delete [] sl; 1408 1409 return antlist ; 1409 1410 } -
trunk/src/TableTraverse.h
r2289 r2343 65 65 template<class T> class TypeManagerImpl: public TypeManager { 66 66 public: 67 TypeManagerImpl(){} 67 68 virtual casa::BaseCompare *getComparator() const { 68 69 static casa::ObjCompare<T> comparator;
Note:
See TracChangeset
for help on using the changeset viewer.