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.
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 useusing std::vector
andusing std::string
for slightly easier use with the less used items still havingstd::
where necessary.