edrosten / libblepp

Modern clean C++ Bluetooth Low Energy on Linux without the Bluez DBUS API
Other
239 stars 62 forks source link

Refactor code to remove 'using namespace std' #70

Closed evotodi closed 1 year ago

evotodi commented 1 year ago

This PR refactors the code to not use 'using namespace std' as doing so can cause some unwanted effects. While it is very common to use 'using namespace std' I have found that it can cause some headaches when including libraries that use 'using namespace std'.

edrosten commented 1 year ago

Ah yes I was a bit lazy writing this!