nlohmann / mutate_cpp

C++ Mutation Test Environment
MIT License
171 stars 22 forks source link

Fix bug: failed to detect `*/` after `/*` #15

Closed iphelf closed 3 years ago

iphelf commented 3 years ago

Originally, if source file contains a line that starts with /* and ends with */, SourceFile.py would detect the starting part only and set in_comment as True, subsequently treating all following codes as comments until it meets another */ in a new pair of /* */.

nlohmann commented 3 years ago

Thanks!