Replace plain enum by enum class
Since C++11 scoped enumerations (enum class
) overcomes a lot of the drawbacks of classical enumerations. Some plain enum may be substituted throughout the code, such as e.g. ElementType
or DistrTypeT
.
Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.
gitlab.psi.ch will be shutdown by end of November! Please migrate repositories to https://gitea.psi.ch - if you need help, contact gitea@psi.ch
Since C++11 scoped enumerations (enum class
) overcomes a lot of the drawbacks of classical enumerations. Some plain enum may be substituted throughout the code, such as e.g. ElementType
or DistrTypeT
.