komischer Fehler
-
malzeit.
was stimmt daran nicht? Den compilerfehler versteh ich irgendwie nichtCImage::CImage(unsigned int width, unsigned int height, unsigned int farbKanaele): m_width(width), m_height(height), m_data(new char[width * height * farbKanaele]) { }C++ Compiler schrieb:
default argument missing for parameter 3 of CImage::CImage(unsigned int, unsigned int, unsigned int)
-
Wie sieht denn die Deklaration aus?
-
deklaration des cunstructors?
CImage(unsigned int width = 0, unsigned int height = 0, unsigned int farbKanaele);
-
oh man .. ich hab schon danke
