Move default constructor to header file

This commit is contained in:
Carles Fernandez 2019-08-14 01:17:47 +02:00
parent 4560712791
commit 151a52d3d6
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D
2 changed files with 1 additions and 6 deletions

View File

@ -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

View File

@ -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