Skip to content

Commit b558a51

Browse files
author
Andreas Pettersson
committed
syntax fix
1 parent 3157325 commit b558a51

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

app/tool/tasks/inv_vref_scan.cxx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77

88
ENABLE_LOGGING();
99

10+
DataFitter::DataFitter() {};
11+
1012
template <typename T>
1113
double median(std::vector<T>& val) {
1214
size_t n = val.size();

app/tool/tasks/inv_vref_scan.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,10 @@
88
* Perform INV_VREF scan for each link
99
* used to trim adc pedestals between two links
1010
*/
11-
void inv_vref_scan(Target* tgt);
12-
1311
class DataFitter
1412
{
1513
public:
16-
void DataFitter();
14+
DataFitter();
1715

1816
// Member functions
1917

@@ -32,3 +30,5 @@ class DataFitter
3230
std::vector<Point> nonlinear_;
3331

3432
};
33+
34+
void inv_vref_scan(Target* tgt);

0 commit comments

Comments
 (0)