diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-06-27 22:53:32 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-06-27 22:53:32 +0000 |
commit | a614dfa3f55253b2b3d70f7d74e021f23a6b6a65 (patch) | |
tree | 8daf5b8943cacda70359d1373b7bb5a55873d129 /ace/Future.h | |
parent | fd2a96929350311a0ac47725b4ef158fb237a0e2 (diff) | |
download | ATCD-a614dfa3f55253b2b3d70f7d74e021f23a6b6a65.tar.gz |
.
Diffstat (limited to 'ace/Future.h')
-rw-r--r-- | ace/Future.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/ace/Future.h b/ace/Future.h index f33a4001d3c..0a0cce0ba5f 100644 --- a/ace/Future.h +++ b/ace/Future.h @@ -76,9 +76,13 @@ class ACE_Future_Rep private: friend class ACE_Future<T>; - // Create, attach, detach and assign encapsulates the reference - // count handling and the object lifetime of ACE_Future_Rep<T> - // instances. +#if defined (__BORLANDC__) && (__BORLANDC__ == 0x540) + static void unimplemented_method_inserted_to_get_around_bcb_4_bug(); +#endif /* (__BORLANDC__) && (__BORLANDC__ == 0x540) */ + + // <create>, <attach>, <detach>, and <assign> encapsulates the + // reference count handling and the object lifetime of + // ACE_Future_Rep<T> instances. static ACE_Future_Rep<T> *create (void); // Create a ACE_Future_Rep<T> and initialize the reference count. |