diff options
author | dhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-08-15 15:30:19 +0000 |
---|---|---|
committer | dhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-08-15 15:30:19 +0000 |
commit | fea45865108847fbecf9c51ef1a461551b1ad2a8 (patch) | |
tree | ab73b08173d00edb64cad81293a5c5c1a6ad4b14 | |
parent | 98755b7da21c54ba3fe861326806397bdca505f7 (diff) | |
download | ATCD-fea45865108847fbecf9c51ef1a461551b1ad2a8.tar.gz |
ChangeLogTag:Fri Aug 15 15:29:16 UTC 2003 Don Hinton <dhinton@dresystems.com>
-rw-r--r-- | ChangeLog | 11 | ||||
-rw-r--r-- | THANKS | 1 | ||||
-rw-r--r-- | apps/JAWS2/JAWS/Parse_Headers.cpp | 4 |
3 files changed, 14 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index 65b16774cba..98ea4bad855 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +Fri Aug 15 15:29:16 UTC 2003 Don Hinton <dhinton@dresystems.com> + + * apps/JAWS2/JAWS/Parse_Headers.cpp: + Modified the ACCESSOR macro to only concatenate the x, or member + variable, token. This resolves a problem with the gcc 3.3 + proprocessor. Thanks to Tim Hawes <thawes@althusius.net> for + reporting the problem and Carlos O'Ryan for supplying the fix. + + * THANKS: + Added Tim Hawes <thawes@althusius.net> to the hall of fame. + Fri Aug 15 09:07:09 2003 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu> * ace/OS.{h,i}: Changed "advice" to "map_advice" to avoid a @@ -1753,6 +1753,7 @@ Dan Halbert <halbert@bbn.com> Jerome Waibel <schrom@schlund.de> Stephan Frenzel <stephan.frenzel@realtech.de> Bruce Jones <BRUCE.JONES@cubic.com> +Tim Hawes <thawes@althusius.net> I would particularly like to thank Paul Stephenson, who worked with me at Ericsson in the early 1990's. Paul devised the recursive Makefile diff --git a/apps/JAWS2/JAWS/Parse_Headers.cpp b/apps/JAWS2/JAWS/Parse_Headers.cpp index b0bdfb0d2c8..124d7ec273b 100644 --- a/apps/JAWS2/JAWS/Parse_Headers.cpp +++ b/apps/JAWS2/JAWS/Parse_Headers.cpp @@ -3,8 +3,8 @@ #include "JAWS/Parse_Headers.h" #define ACCESSOR(T,C,x) \ -T C##::##x (void) const { return this->##x##_; }\ -void C##::##x (T t) { this->##x##_ = t; } +T C :: x (void) const { return this-> x##_; }\ +void C :: x (T t) { this-> x##_ = t; } int JAWS_Parse_Headers::parse_headers (JAWS_Header_Info *info, |