Replace fallthrough comment with C++17's attribute (#334)

This commit is contained in:
Michał Janiszewski 2019-03-20 22:19:30 +01:00 коммит произвёл Howard Wolosky
Родитель 47f4757f07
Коммит 94f0e8b320
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -292,7 +292,7 @@ namespace CalculationManager
break;
case Command::CommandFE:
m_isExponentialFormat = !m_isExponentialFormat;
// fall through
[[fallthrough]];
default:
m_currentCalculatorEngine->ProcessCommand(static_cast<WPARAM>(command));
break;