Search:

Type: Posts; User: quzah

Search: Search took 0.10 seconds.

  1. Replies
    6
    Views
    1,442

    Ah, good point. Yes, in this case, the macro...

    Ah, good point. Yes, in this case, the macro would be designed to be working with variables already declared. I misread or misunderstood the intent.

    Quzah.
  2. Replies
    6
    Views
    1,442

    It doesn't matter. Macros are compile-time text...

    It doesn't matter. Macros are compile-time text substitution. It's not going to put in "x" and "y". It's going to put in "a" and "b":

    #define FOO(x,y) ( x && y )
    ...
    FOO( a, b );What you're...
Results 1 to 2 of 2