diff options
author | crodrigu <crodrigu@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-02-22 14:34:35 +0000 |
---|---|---|
committer | crodrigu <crodrigu@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-02-22 14:34:35 +0000 |
commit | 51a4a592f8929e0ae3123a8b7cb0cda95e628550 (patch) | |
tree | a8b60d375d17c7fea423762c484a93f920b385f4 | |
parent | acdf65783c4ec3adf3c0bd4b77b265f44dae7a2d (diff) | |
download | ATCD-51a4a592f8929e0ae3123a8b7cb0cda95e628550.tar.gz |
ChangeLogTag: Fri Feb 22 09:31:35 2002 Craig Rodrigues <crodrigu@bbn.com>
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-02a | 6 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-03a | 6 | ||||
-rw-r--r-- | ace/QoS/QoS_Session_Factory.h | 2 |
4 files changed, 19 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index a8fc0ffca69..2e682c7afe9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Fri Feb 22 09:31:35 2002 Craig Rodrigues <crodrigu@bbn.com> + + * ace/QoS/QoS_Session_Factory.h (ACE_QoS_Session_Type): + Change "const static" to "static const" to remove gcc 3.1 + warning. + Fri Feb 22 08:07:12 2002 Johnny Willemsen <jwillemsen@remedy.nl> * ace/Makefile.bor: Added String_Base.cpp and Atomic_op.cpp to the diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a index a8fc0ffca69..2e682c7afe9 100644 --- a/ChangeLogs/ChangeLog-02a +++ b/ChangeLogs/ChangeLog-02a @@ -1,3 +1,9 @@ +Fri Feb 22 09:31:35 2002 Craig Rodrigues <crodrigu@bbn.com> + + * ace/QoS/QoS_Session_Factory.h (ACE_QoS_Session_Type): + Change "const static" to "static const" to remove gcc 3.1 + warning. + Fri Feb 22 08:07:12 2002 Johnny Willemsen <jwillemsen@remedy.nl> * ace/Makefile.bor: Added String_Base.cpp and Atomic_op.cpp to the diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a index a8fc0ffca69..2e682c7afe9 100644 --- a/ChangeLogs/ChangeLog-03a +++ b/ChangeLogs/ChangeLog-03a @@ -1,3 +1,9 @@ +Fri Feb 22 09:31:35 2002 Craig Rodrigues <crodrigu@bbn.com> + + * ace/QoS/QoS_Session_Factory.h (ACE_QoS_Session_Type): + Change "const static" to "static const" to remove gcc 3.1 + warning. + Fri Feb 22 08:07:12 2002 Johnny Willemsen <jwillemsen@remedy.nl> * ace/Makefile.bor: Added String_Base.cpp and Atomic_op.cpp to the diff --git a/ace/QoS/QoS_Session_Factory.h b/ace/QoS/QoS_Session_Factory.h index a0c571b9f8a..9a322be86d6 100644 --- a/ace/QoS/QoS_Session_Factory.h +++ b/ace/QoS/QoS_Session_Factory.h @@ -64,7 +64,7 @@ public : * ACE_DEFAULT_QOS_SESSION = ACE_RAPI_SESSION on Unix platforms with RAPI support * = ACE_GQOS_SESSION on Windows platforms with GQOS support */ - const static enum ACE_QoS_Session_Type ACE_DEFAULT_QOS_SESSION; + static const enum ACE_QoS_Session_Type ACE_DEFAULT_QOS_SESSION; /// Create a QoS session of the given type (RAPI or GQoS). ACE_QoS_Session * create_session (ACE_QoS_Session_Type qos_session_type = ACE_DEFAULT_QOS_SESSION ); |