mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-01-23 15:36:58 +00:00
Move default constructor to header file
This commit is contained in:
parent
4560712791
commit
151a52d3d6
@ -36,11 +36,6 @@
|
||||
#include <stdexcept>
|
||||
|
||||
|
||||
Ls_Pvt::Ls_Pvt()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
arma::vec Ls_Pvt::bancroftPos(const arma::mat& satpos, const arma::vec& obs)
|
||||
{
|
||||
// BANCROFT Calculation of preliminary coordinates for a GPS receiver based on pseudoranges
|
||||
|
@ -42,7 +42,7 @@
|
||||
class Ls_Pvt : public Pvt_Solution
|
||||
{
|
||||
public:
|
||||
Ls_Pvt();
|
||||
Ls_Pvt() = default;
|
||||
|
||||
/*!
|
||||
* \brief Computes the initial position solution based on the Bancroft algorithm
|
||||
|
Loading…
Reference in New Issue
Block a user