Fixed compile error.
This commit is contained in:
parent
0e3150e577
commit
4acda5c777
1 changed files with 2 additions and 2 deletions
|
@ -44,7 +44,7 @@ namespace comedi
|
|||
return comedi_to_physical(data, &_polynomial);
|
||||
}
|
||||
private:
|
||||
comedi_polynomial_t _polynomial
|
||||
comedi_polynomial_t _polynomial;
|
||||
};
|
||||
|
||||
// wrapper for comedi_from_physical()
|
||||
|
@ -59,7 +59,7 @@ namespace comedi
|
|||
return comedi_from_physical(physical_value, &_polynomial);
|
||||
}
|
||||
private:
|
||||
comedi_polynomial_t _polynomial
|
||||
comedi_polynomial_t _polynomial;
|
||||
};
|
||||
|
||||
class device {
|
||||
|
|
Loading…
Add table
Reference in a new issue