Code changes required to compile using Eclipse
Brought to you by:
vincent_zalzal
I had to make the following changes to get the 1.3 sample code to compile using Eclipse in Fedora 11
in MFILEcpp
added
#include <cstdlib>
#include <cstring>
In simple_plane.cpp
111 change void cPlaneEKF::makeW() to void cPlaneEKF::makeBaseW()
123 change void cPlaneEKF::makeQ() to void cPlaneEKF::makeBaseQ()
144 change void cPlaneEKF::makeV() to void cPlaneEKF::makeBaseV()
152 change void cPlaneEKF::makeR() to void cPlaneEKF::makeBaseR()
Thanks