Preguntas etiquetadas con rvalue

2
¿Por qué una variable enum es un valor r aquí?
Ejemplo: typedef enum Color { RED, GREEN, BLUE } Color; void func(unsigned int& num) { num++; } int main() { Color clr = RED; func(clr); return 0; } Me sale el siguiente error cuando compilo esto: <source>: In function 'int main()': <source>:16:9: error: cannot bind non-const lvalue reference of type …

Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.