View Single Post
  #4 (permalink)  
Old May 16th, 2005, 10:50 PM
IZRAILEVICH1 IZRAILEVICH1 is offline
Authorized User
 
Join Date: May 2005
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
Default

The first (but not last) of the errors is here

                    it is like this:
.................................................. ...........
myDerivedClass(int a, int b) : myBaseClass(x, y) {} // line 4
.................................................. ............

                    it should be:
.................................................. ............
myDerivedClass(int a, int b) : myBaseClass(a,b) {} // line 4
.................................................. ...........

Good luck with the rest of the errors!

Reply With Quote