summaryrefslogtreecommitdiff
path: root/ACE/ace/Auto_IncDec_T.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2010-10-25 06:34:35 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2010-10-25 06:34:35 +0000
commit31c2c8a2966426bd44e22470d2c78680c55c13b5 (patch)
treec2703a220ca946bb61bce186e7f2dbafee556e73 /ACE/ace/Auto_IncDec_T.h
parentb929d6cbdbb10f66fadd48bb7d5eba188893121f (diff)
downloadATCD-31c2c8a2966426bd44e22470d2c78680c55c13b5.tar.gz
Mon Oct 25 06:30:35 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Atomic_Op_T.h: * ace/Auto_IncDec_T.h: Doxygen changes
Diffstat (limited to 'ACE/ace/Auto_IncDec_T.h')
-rw-r--r--ACE/ace/Auto_IncDec_T.h12
1 files changed, 2 insertions, 10 deletions
diff --git a/ACE/ace/Auto_IncDec_T.h b/ACE/ace/Auto_IncDec_T.h
index 7a6bf7d0d19..437b5fe4780 100644
--- a/ACE/ace/Auto_IncDec_T.h
+++ b/ACE/ace/Auto_IncDec_T.h
@@ -34,7 +34,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL
*
* This data structure is meant to be used within a method,
* function, or scope. The actual parameter given for the
- * <ACE_SAFELY_INCREMENTABLE_DECREMENTABLE> template parameter
+ * @c ACE_SAFELY_INCREMENTABLE_DECREMENTABLE template parameter
* must provide at least operators ++ and --.
*/
template <class ACE_SAFELY_INCREMENTABLE_DECREMENTABLE>
@@ -51,7 +51,7 @@ public:
void dump (void) const;
protected:
- /// Reference to the <ACE_SAFELY_INCREMENTABLE_DECREMENTABLE> counter
+ /// Reference to the @c ACE_SAFELY_INCREMENTABLE_DECREMENTABLE counter
/// we're incrementing/decrementing.
ACE_SAFELY_INCREMENTABLE_DECREMENTABLE &counter_;
};
@@ -64,14 +64,6 @@ ACE_END_VERSIONED_NAMESPACE_DECL
#if defined (ACE_TEMPLATES_REQUIRE_SOURCE)
#include "ace/Auto_IncDec_T.cpp"
-// On Win32 platforms, this code will be included as template source
-// code and will not be inlined. Therefore, we first turn off
-// ACE_INLINE, set it to be nothing, include the code, and then turn
-// ACE_INLINE back to its original setting. All this nonsense is
-// necessary, since the generic template code that needs to be
-// specialized cannot be inlined, else the compiler will ignore the
-// specialization code. Also, the specialization code *must* be
-// inlined or the compiler will ignore the specializations.
#endif /* ACE_TEMPLATES_REQUIRE_SOURCE */
#if defined (ACE_TEMPLATES_REQUIRE_PRAGMA)