Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added stdlib headers due to using a newer compiler #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions bin/BulletVehicleEstimation/VehicleDemo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ subject to the following restrictions:

#include "GlutStuff.h"
#include "VehicleDemo.h"
#include <unistd.h>

using namespace gcop;
using namespace Eigen;
Expand Down
1 change: 1 addition & 0 deletions bin/BulletZVehicleTest/VehicleDemo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ subject to the following restrictions:

#include "GlutStuff.h"
#include "VehicleDemo.h"
#include <unistd.h>

using namespace gcop;
using namespace Eigen;
Expand Down
3 changes: 3 additions & 0 deletions bin/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,9 @@ ENDIF (PQP_FOUND)
add_executable(body3dshell body3dshell.cc)
target_link_libraries(body3dshell gcop_algos gcop_views gcop_systems ${ALL_LIBS})

add_executable(eye_rcm eye_rcm.cc)
target_link_libraries(eye_rcm gcop_algos gcop_views gcop_systems ${ALL_LIBS})

add_executable(helitest helitest.cc)
target_link_libraries(helitest gcop_algos gcop_views gcop_systems ${ALL_LIBS})

Expand Down
1 change: 1 addition & 0 deletions bin/bulletrccartest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include "params.h"
#include "bulletrccar.h"
#include "bulletworld.h"
#include <unistd.h>

using namespace std;
using namespace Eigen;
Expand Down
1 change: 1 addition & 0 deletions bin/cebulletcartest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#include "controltparam.h"
#include "bulletrccar.h"
#include "bulletworld.h"
#include <unistd.h>

using namespace std;
using namespace Eigen;
Expand Down
1 change: 1 addition & 0 deletions bin/ddpbulletrccartest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include "bulletrccar.h"
#include "bulletworld.h"
#include "params.h"
#include <unistd.h>

using namespace std;
using namespace Eigen;
Expand Down
1 change: 1 addition & 0 deletions bin/sddpbulletrccartest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include "params.h"
#include "bulletrccar.h"
#include "bulletworld.h"
#include <unistd.h>

using namespace std;
using namespace Eigen;
Expand Down
1 change: 1 addition & 0 deletions bin/spsabulletcartest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include "params.h"
#include "bulletrccar.h"
#include "bulletworld.h"
#include <unistd.h>

using namespace std;
using namespace Eigen;
Expand Down
1 change: 1 addition & 0 deletions lib/systems/manifolds/mbsstate.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

#include <Eigen/Dense>
#include "se3.h"
#include <vector>

namespace gcop {

Expand Down
1 change: 1 addition & 0 deletions lib/utils/params.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#include <cstring>
#include <iostream>
#include <Eigen/Dense>
#include <vector>

/*
* Provides storage and retrieval for arbitrary
Expand Down