summaryrefslogtreecommitdiff
path: root/docs/tutorials/018/token.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'docs/tutorials/018/token.cpp')
-rw-r--r--docs/tutorials/018/token.cpp15
1 files changed, 1 insertions, 14 deletions
diff --git a/docs/tutorials/018/token.cpp b/docs/tutorials/018/token.cpp
index 1323dcaa9b4..995b127014f 100644
--- a/docs/tutorials/018/token.cpp
+++ b/docs/tutorials/018/token.cpp
@@ -11,22 +11,9 @@ int main(int,char**)
Token token;
token.run();
- // And now the ACE_Mutex.
+ // And now and ACE_Mutex.
Mutex mutex;
mutex.run();
return(0);
}
-#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
-template class Test_T <ACE_Mutex>;
-template class Test_T <ACE_Token>;
-template class ACE_Atomic_Op <ACE_Mutex, int>;
-#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
-#pragma instantiate Test_T <ACE_Mutex>
-#pragma instantiate Test_T <ACE_Token>
-#pragma instantiate ACE_Atomic_Op <ACE_Mutex, int>
-#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */
-
-
-
-