summaryrefslogtreecommitdiff
path: root/ACE/ace/Atomic_Op_T.h
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2007-10-08 18:32:21 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2007-10-08 18:32:21 +0000
commita9caf698229893e4e72997a226436716e0f962fe (patch)
tree9e11c38fe2997a87961f821078ee960dfce00e0b /ACE/ace/Atomic_Op_T.h
parent65afecb35e9c690279f493ac6e3e0381c8e26420 (diff)
downloadATCD-a9caf698229893e4e72997a226436716e0f962fe.tar.gz
ChangeLogTag:Mon Oct 8 17:59:15 UTC 2007 Ossama Othman <ossama_othman at symantec dot com>
Diffstat (limited to 'ACE/ace/Atomic_Op_T.h')
-rw-r--r--ACE/ace/Atomic_Op_T.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/ACE/ace/Atomic_Op_T.h b/ACE/ace/Atomic_Op_T.h
index 6cb422850e6..cf9fbda184d 100644
--- a/ACE/ace/Atomic_Op_T.h
+++ b/ACE/ace/Atomic_Op_T.h
@@ -1,4 +1,4 @@
-/* -*- C++ -*- */
+// -*- C++ -*-
//=============================================================================
/**
@@ -27,19 +27,19 @@ struct ACE_Type_Traits
{
typedef TYPE const & parameter_type;
};
-
+
template<>
struct ACE_Type_Traits<bool>
{
typedef bool parameter_type;
};
-
+
template<>
struct ACE_Type_Traits<char>
{
typedef char parameter_type;
};
-
+
template<>
struct ACE_Type_Traits<signed char>
{
@@ -51,37 +51,37 @@ struct ACE_Type_Traits<unsigned char>
{
typedef unsigned char parameter_type;
};
-
+
template<>
struct ACE_Type_Traits<short>
{
typedef short parameter_type;
};
-
+
template<>
struct ACE_Type_Traits<unsigned short>
{
typedef unsigned short parameter_type;
};
-
+
template<>
struct ACE_Type_Traits<int>
{
typedef int parameter_type;
};
-
+
template<>
struct ACE_Type_Traits<unsigned int>
{
typedef unsigned int parameter_type;
};
-
+
template<>
struct ACE_Type_Traits<long>
{
typedef long parameter_type;
};
-
+
template<>
struct ACE_Type_Traits<unsigned long>
{
@@ -110,19 +110,19 @@ struct ACE_Type_Traits<float>
{
typedef float parameter_type;
};
-
+
template<>
struct ACE_Type_Traits<double>
{
typedef double parameter_type;
};
-
+
template<>
struct ACE_Type_Traits<long double>
{
typedef long double parameter_type;
};
-
+
template<typename TYPE>
struct ACE_Type_Traits<TYPE*>
{