1
0
Fork 0
mirror of https://github.com/TheLartians/ModernCppStarter.git synced 2025-08-30 13:41:13 +02:00

add coverage info

This commit is contained in:
Lars Melchior 2020-04-13 18:04:03 +02:00
parent ab114c5408
commit 2725840926
2 changed files with 3 additions and 1 deletions

View file

@ -7,7 +7,7 @@ Greeter::Greeter(std::string _name) : name(_name) {}
std::string Greeter::greet(LanguageCode lang) const {
switch (lang) {
#if defined(_WIN32) || defined(WIN32)
// this silences MSVC as it does not seem to understand strongly-typed enums
// this silences a MSVC warning as it does not seem to understand strongly-typed enums
default:
#endif
case LanguageCode::EN: