waifod / quant_finance_models

Project containing the implementations of quantitative finance models
MIT License
5 stars 1 forks source link

Use `enum class` instead of plain `enum` #50

Closed david-alvarez-rosa closed 1 year ago

david-alvarez-rosa commented 1 year ago

Addresses minor comment on #47

Best practice states that this should be enum class instead. See Enum.3: Prefer class enums over “plain” enums from C++ Core Guidelines.