diff options
author | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2004-11-03 22:39:30 +0000 |
---|---|---|
committer | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2004-11-03 22:39:30 +0000 |
commit | 5bbcab2f6588672bf2b92888b641f7581ce426d5 (patch) | |
tree | 2bb185e6dd7a9ac868e3a466efa7612c4120c6a6 /TAO/CIAO | |
parent | bda7b992cadec64b8b239879541be51feb374c0a (diff) | |
download | ATCD-5bbcab2f6588672bf2b92888b641f7581ce426d5.tar.gz |
ChangeLogTag: Wed Nov 3 16:32:54 2004 Jeff Parsons <j.parsons@vanderbilt.edu>
Diffstat (limited to 'TAO/CIAO')
-rw-r--r-- | TAO/CIAO/CIDLC/ExecutorMappingGenerator.cpp | 6 | ||||
-rw-r--r-- | TAO/CIAO/ChangeLog | 9 |
2 files changed, 12 insertions, 3 deletions
diff --git a/TAO/CIAO/CIDLC/ExecutorMappingGenerator.cpp b/TAO/CIAO/CIDLC/ExecutorMappingGenerator.cpp index 990d1085c82..a160c24d90d 100644 --- a/TAO/CIAO/CIDLC/ExecutorMappingGenerator.cpp +++ b/TAO/CIAO/CIDLC/ExecutorMappingGenerator.cpp @@ -993,19 +993,19 @@ namespace virtual void pre (InParameter&) { - os << "in "; + os << endl << "in "; } virtual void pre (OutParameter&) { - os << "out "; + os << endl << "out "; } virtual void pre (InOutParameter&) { - os << "inout "; + os << endl << "inout "; } virtual void diff --git a/TAO/CIAO/ChangeLog b/TAO/CIAO/ChangeLog index f3cdbbdeadd..136652ee59c 100644 --- a/TAO/CIAO/ChangeLog +++ b/TAO/CIAO/ChangeLog @@ -1,3 +1,12 @@ +Wed Nov 3 16:32:54 2004 Jeff Parsons <j.parsons@vanderbilt.edu> + + * CIDLC/ExecutorMappingGenerator.cpp: + + Added generation of newline before each operation + parameter so each one will be on a separate line. + It was discovered that the VC 7.1 lexer truncates lines + longer than 1024 characters. + Wed Nov 3 22:32:18 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu> * CIDLC/ServantSourceGenerator.cpp (namespace): |