File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ class RInterval : public RUnit<T>
131
131
};
132
132
133
133
template <typename T>
134
- class RLog : public RUnit <T>
134
+ class RLog : public RUnit <T>
135
135
{
136
136
private:
137
137
Original file line number Diff line number Diff line change @@ -784,19 +784,19 @@ NGroup<T>::condense(const double Tol,
784
784
if (type[cnt]==3 ) // log
785
785
{
786
786
OutList.push_back
787
- (new RLog (AValue,Values[cnt+repCnt-1 ],
787
+ (new RLog<T> (AValue,Values[cnt+repCnt-1 ],
788
788
static_cast <int >(repCnt)));
789
789
}
790
790
if (type[cnt]==2 ) // interval
791
791
{
792
792
OutList.push_back
793
- (new RInterval (AValue,Values[cnt+repCnt-1 ],
793
+ (new RInterval<T> (AValue,Values[cnt+repCnt-1 ],
794
794
static_cast <int >(repCnt)));
795
795
}
796
796
if (type[cnt]==1 ) // repeat
797
797
{
798
798
OutList.push_back
799
- (new RRepeat (AValue,static_cast <int >(repCnt+1 )));
799
+ (new RRepeat<T> (AValue,static_cast <int >(repCnt+1 )));
800
800
}
801
801
AValue=Values[cnt+repCnt-1 ];
802
802
}
You can’t perform that action at this time.
0 commit comments