You are viewing an older revision! See the latest version

Compiler Error 147

Probably you declared the function earlier in a header file, but did not match up the input types.

Example:

/*foobar.h*/ void trigger(int foo);

/*foobar.cpp*/ void trigger(int foo, int bar){ this function only has two inputs instead of the one previously specified. /* Execute trigger function */

}


All wikipages