diff options
author | naga <naga@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-05-21 02:28:57 +0000 |
---|---|---|
committer | naga <naga@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-05-21 02:28:57 +0000 |
commit | dce1b1ffb95f1fa7b2cfad0983861960c5906466 (patch) | |
tree | d291755ee1494ddca4e0e2e5d492fc0262cb8913 | |
parent | 524ae977b34beca0d3f8246cb3138f8cf41ebd81 (diff) | |
download | ATCD-dce1b1ffb95f1fa7b2cfad0983861960c5906466.tar.gz |
*** empty log message ***
-rw-r--r-- | TAO/ChangeLog-99c | 7 | ||||
-rw-r--r-- | TAO/orbsvcs/orbsvcs/AV/AVStreams_i.h | 11 |
2 files changed, 15 insertions, 3 deletions
diff --git a/TAO/ChangeLog-99c b/TAO/ChangeLog-99c index 95d010355e9..9337a31000a 100644 --- a/TAO/ChangeLog-99c +++ b/TAO/ChangeLog-99c @@ -1,3 +1,10 @@ +Thu May 20 21:28:25 1999 Nagarajan Surendran <naga@cs.wustl.edu> + + * orbsvcs/orbsvcs/AV/AVStreams_i.{h,cpp}: + Fixed a few MSVC warnings and prefixed the Direction enumeration + to DIR_ since IN,OUT and INOUT are MSVC keywords. + + Thu May 20 21:09:29 1999 Jeff Parsons <parsons@cs.wustl.edu> * tao/DomainC.cpp: diff --git a/TAO/orbsvcs/orbsvcs/AV/AVStreams_i.h b/TAO/orbsvcs/orbsvcs/AV/AVStreams_i.h index 0395e251ff0..74b85c9b506 100644 --- a/TAO/orbsvcs/orbsvcs/AV/AVStreams_i.h +++ b/TAO/orbsvcs/orbsvcs/AV/AVStreams_i.h @@ -994,8 +994,8 @@ public: protected: ACE_Array<char*> token_array_; - int count_; - int num_tokens_; + size_t count_; + size_t num_tokens_; }; class TAO_ORBSVCS_Export TAO_FlowSpec_Entry @@ -1003,7 +1003,12 @@ class TAO_ORBSVCS_Export TAO_FlowSpec_Entry public: // = TITLE // An helper entry class in the flow spec sequence passed to bind_devs. - enum Direction {INVALID=-1,IN=0,OUT=1,INOUT=2}; + enum Direction + { + INVALID = -1, + DIR_IN = 0, + DIR_OUT = 1, + DIR_INOUT = 2}; TAO_FlowSpec_Entry (void); // constructor. |