Changeset 2343


Ignore:
Timestamp:
11/07/11 01:55:32 (12 years ago)
Author:
Takeshi Nakazato
Message:

New Development: No

JIRA Issue: No

Ready for Test: Yes

Interface Changes: No

What Interface Changed: Please list interface changes

Test Programs: List test programs

Put in Release Notes: Yes/No?

Module(s): Module Names change impacts.

Description: Describe your changes here...

Patch from Wes.
This is changes intend to compile with llvm c++ and Intel
and those might not affect actual behavior.


Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/external-alma/atnf/PKSIO/PKSMS2reader.cc

    r1880 r2343  
    13981398  Int n = s.freq( delim ) + 1 ;
    13991399  Vector<String> antlist ;
    1400   string sl[n] ;
     1400  string *sl = new string[n] ;
    14011401  Int numSubstr = split( s, sl, n, "," );
    14021402  antlist.resize( numSubstr ) ;
     
    14061406  }
    14071407  //cerr << "antlist = " << antlist << endl ;
     1408  delete [] sl;
    14081409  return antlist ;
    14091410}
  • trunk/src/TableTraverse.h

    r2289 r2343  
    6565  template<class T> class TypeManagerImpl: public TypeManager {
    6666  public:
     67    TypeManagerImpl(){}
    6768    virtual casa::BaseCompare *getComparator() const {
    6869      static casa::ObjCompare<T> comparator;
Note: See TracChangeset for help on using the changeset viewer.