Warum ist eine Aufzählungsvariable hier ein Wert?
Beispiel: typedef enum Color { RED, GREEN, BLUE } Color; void func(unsigned int& num) { num++; } int main() { Color clr = RED; func(clr); return 0; } Beim Kompilieren wird folgende Fehlermeldung angezeigt: <source>: In function 'int main()': <source>:16:9: error: cannot bind...