steveT 0 Posted March 10, 2006 Report Share Posted March 10, 2006 Hi, Passing a right-parenthesis ')' as a parameter fails: #include <system.h> void funct(char x); void main() { funct(')'); } void funct(char x) { char y = x; } Compiler error is: error: arguments of 'funct' don't match the parameters of call Steve. Quote Link to post Share on other sites
Dave 0 Posted March 10, 2006 Report Share Posted March 10, 2006 Steve, Compiler error is: error: arguments of 'funct' don't match the parameters of call Annoying! Please use: ... funct(0x29); ... instead. Quote Link to post Share on other sites
Pavel 0 Posted March 11, 2006 Report Share Posted March 11, 2006 Fixed. Fix will be available in the next release. Regards, Pavel Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You are posting as a guest. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.