udacity / CarND-MPC-Project

CarND Term 2 Model Predictive Control (MPC) Project
MIT License
280 stars 1.2k forks source link

fixed std namespace errors (probably due to c93b736) #41

Closed creich closed 5 years ago

mvirgo commented 5 years ago

Thanks for the PR!

Ended up merging d01be14 as a quick fix on this, although this does follow closer to the style we're trying to go with going forward (i.e. avoiding using namespace std) -> I'm in the process of cleaning up the C++ lessons and repos to stick to better C++ practices. Most likely in this type of situation we'll use using std::vector and using std::string for slightly easier use with the less used items still having std:: where necessary.