banditcpp / bandit

Human-friendly unit testing for C++11
https://banditcpp.github.io/bandit/
Other
259 stars 37 forks source link

Bug/Typo in concatenation macro #134

Closed OpatrilPeter closed 6 years ago

OpatrilPeter commented 6 years ago

at bandit/bandit/registration/registrar.h:18

#define BANDIT_ADD_COUNTER(a) SNOWHOUSE_CONCAT(a, __COUNTER__) that line should presumably look like this #define BANDIT_ADD_COUNTER(a) BANDIT_CONCAT(a, __COUNTER__)

sbeyer commented 6 years ago

😱 Copy-and-paste is such a bad-ass. Thank you very much!