Changeset 3042
- Timestamp:
- 07/30/15 14:49:26 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/Scantable.cpp
r3039 r3042 2657 2657 } 2658 2658 2659 STBaselineTable* btp ;2659 STBaselineTable* btp = NULL; 2660 2660 ROScalarColumn<Double> tcol = ROScalarColumn<Double>(table_, "TIME"); 2661 2661 Vector<Double> timeSecCol = tcol.getColumn(); … … 2734 2734 } 2735 2735 2736 delete btp; 2736 if (btp != NULL) { 2737 delete btp; 2738 } 2739 2737 2740 return res; 2738 2741 }
Note:
See TracChangeset
for help on using the changeset viewer.