Di recente ho iniziato a utilizzare C ++ 17, che porta constexpr if. Questo tuttavia rovina il c++-mode
rientro predefinito.
// emacs 25.3.2 with --no-init
if constexpr (n == 1) {
// Why?
} else if constexpr (n == 2) {
// This is a mess...
} else {
// and it keeps getting weird
}
Qualcuno lo fa
- Conosci un'alternativa più semplice alla modalità cc?
- Sai come posso risolvere questo particolare problema?