diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-06-27 23:27:13 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-06-27 23:27:13 +0000 |
commit | d6fd22b5e6402c7761037d53aeeabaa21ddd1c13 (patch) | |
tree | f0b1434d9ec01b823b31e2109a1818b08faa3f3b /ace/Timeprobe_T.cpp | |
parent | 9dec20aae9d04906eca419ebc6d17380f9d801c9 (diff) | |
download | ATCD-d6fd22b5e6402c7761037d53aeeabaa21ddd1c13.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Timeprobe_T.cpp')
-rw-r--r-- | ace/Timeprobe_T.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ace/Timeprobe_T.cpp b/ace/Timeprobe_T.cpp index 7b37918e7a6..822e32a26a4 100644 --- a/ace/Timeprobe_T.cpp +++ b/ace/Timeprobe_T.cpp @@ -29,6 +29,18 @@ ACE_Timeprobe<ACE_LOCK>::ACE_Timeprobe (u_long size) } template <class ACE_LOCK> +ACE_Timeprobe<ACE_LOCK>::ACE_Timeprobe (const ACE_Timeprobe<ACE_LOCK> &) +{ + // + // Stupid MSVC is forcing me to define this; please don't use it. + // + + ACE_ERROR ((LM_ERROR, + __TEXT ("ACE_NOTSUP: %s, line %d\n"), __FILE__, __LINE__)); + errno = ENOTSUP; +} + +template <class ACE_LOCK> ACE_Timeprobe<ACE_LOCK>::~ACE_Timeprobe (void) { delete [] this->timeprobes_; |