[EMAIL PROTECTED] wrote:
> OK, this is the code, the error is in the line that contains '(...)':

Dude, please, how about reducing this to the customary minimal example?

> #define __glibcpp_function_requires(...)      --> The error is here

Variadic preprocessor macros. I have no idea when exactly they started
coming up, but it could be that your compiler simply doesn't understand
them. You could upgrade the preprocessor, backport the feature or simply
replace this with 

  #define __glibcpp_function_requires(x)

and then fix every case where this is used, probably just adding another
set of brackets so the preprocessor treats it as one argument:

-  requires( foo, bar);
+  requires((foo, bar));

Uli

-- 
http://gcc.gnu.org/faq.html
http://parashift.com/c++-faq-lite/

_______________________________________________
help-gplusplus mailing list
help-gplusplus@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gplusplus

Reply via email to