[Date Prev][Date Next][Thread Prev][Thread Next][Author Index][Date Index][Thread Index]
Re: :: before global functions
- To: <eric@son-of-blob>, <ravi@xxxxxxxxxxx>
- Subject: Re: :: before global functions
- From: Michael McClary <michael@xxxxxxxxxxx>
- Date: Mon, 9 Apr 90 19:36:52 PDT
- Cc: <tribble@son-of-blob>, <xtech@son-of-blob>
> There are a couple of places where the Manipulator code calls global
> functions that translate to macros in C++. They will not work with ::
> in front of them. We can either (a) use some criterion like upper case
> letters or (b) have a list of functions shouldn't have ::
> (sounds better to me); anything without a :: shouldn't have spaces
> after the comma either, as it screws up symbol concatenation. (I put
> in a hack for this that we should take out once we get a better
> solution).
> --ravi
Please let's not do anything (like (b)) that:
- Requires separate files on separate machines to maintain consistency.
- Requires coordinated modification of the translator and sources when
a new function-like macro is added.
- Creates another thing to be broken by merges.
michael