Ignore:
Timestamp:
03/03/15 18:26:31 (9 years ago)
Author:
Kana Sugimoto
Message:

New Development: Yes

JIRA Issue: Yes (CAS-6929)

Ready for Test: Yes

Interface Changes: No

What Interface Changed:

Test Programs:

Put in Release Notes: No

Module(s): asap as a whole

Description: committing Darrell's changes to make asap work with merged casacore.


File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/external-alma/components/SpectralComponents/SpectralElement.cc

    r2980 r3029  
    5353  _fixed(other._fixed.copy()),
    5454  _function(
    55                 std::tr1::shared_ptr<Function<Double, Double> >(
     55                SHARED_PTR<Function<Double, Double> >(
    5656                        other._function->clone()
    5757                )
     
    7272                _fixed.resize(n);
    7373                _fixed = other._fixed.copy();
    74                 _function = std::tr1::shared_ptr<Function<Double, Double> >(
     74                _function = SHARED_PTR<Function<Double, Double> >(
    7575                        other._function->clone()
    7676                );
     
    165165
    166166void SpectralElement::_setFunction(
    167         const std::tr1::shared_ptr<Function<Double, Double> >& f
     167        const SHARED_PTR<Function<Double, Double> >& f
    168168) {
    169169        _function = f;
Note: See TracChangeset for help on using the changeset viewer.