summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-08-21 10:32:13 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-08-21 10:32:13 +0200
commitfd49219a28f14136731f809f8fb959bc2022f912 (patch)
tree8e5f6c2dbe8c0971e698e4c00e1dbf1a84a4db95
parent888e4cf4a074e7dd0ef7f0f6e0adb5fa9675a817 (diff)
downloadATCD-fd49219a28f14136731f809f8fb959bc2022f912.tar.gz
Const change
* ACE/tests/NonBlocking_Conn_Test.h:
-rw-r--r--ACE/tests/NonBlocking_Conn_Test.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/ACE/tests/NonBlocking_Conn_Test.h b/ACE/tests/NonBlocking_Conn_Test.h
index a3cb165bae7..b31b9544cfc 100644
--- a/ACE/tests/NonBlocking_Conn_Test.h
+++ b/ACE/tests/NonBlocking_Conn_Test.h
@@ -24,7 +24,6 @@
class Svc_Handler : public ACE_Svc_Handler<ACE_SOCK_STREAM, ACE_NULL_SYNCH>
{
public:
-
enum Connection_Status
{
Conn_SUCCEEDED,
@@ -50,7 +49,7 @@ public:
Connection_Status *status_;
int *completion_counter_;
- bool is_ref_counted_;
+ bool const is_ref_counted_;
};
#endif /* NONBLOCKING_CONN_TEST_H */