summaryrefslogtreecommitdiff
path: root/shared/loki/ConstPolicy.h
diff options
context:
space:
mode:
Diffstat (limited to 'shared/loki/ConstPolicy.h')
-rw-r--r--shared/loki/ConstPolicy.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/shared/loki/ConstPolicy.h b/shared/loki/ConstPolicy.h
index 74c9e5aa..1adb227a 100644
--- a/shared/loki/ConstPolicy.h
+++ b/shared/loki/ConstPolicy.h
@@ -2,12 +2,12 @@
// The Loki Library
// Copyright (c) 2006 Richard Sposato
// Copyright (c) 2006 Peter Kümmel
-// Permission to use, copy, modify, distribute and sell this software for any
-// purpose is hereby granted without fee, provided that the above copyright
-// notice appear in all copies and that both that copyright notice and this
+// Permission to use, copy, modify, distribute and sell this software for any
+// purpose is hereby granted without fee, provided that the above copyright
+// notice appear in all copies and that both that copyright notice and this
// permission notice appear in supporting documentation.
-// The authors make no representations about the
-// suitability of this software for any purpose. It is provided "as is"
+// The authors make no representations about the
+// suitability of this software for any purpose. It is provided "as is"
// without express or implied warranty.
////////////////////////////////////////////////////////////////////////////////
#ifndef LOKI_CONST_POLICY_INC_
@@ -32,11 +32,11 @@ namespace Loki
/// Don't propagate constness of pointed or referred object.
////////////////////////////////////////////////////////////////////////////////
- template< class T >
- struct DontPropagateConst
- {
- typedef T Type;
- };
+template< class T >
+struct DontPropagateConst
+{
+ typedef T Type;
+};
////////////////////////////////////////////////////////////////////////////////
/// \class PropagateConst
@@ -45,11 +45,11 @@ namespace Loki
/// Propagate constness of pointed or referred object.
////////////////////////////////////////////////////////////////////////////////
- template< class T >
- struct PropagateConst
- {
- typedef const T Type;
- };
+template< class T >
+struct PropagateConst
+{
+ typedef const T Type;
+};
// default will not break existing code
#ifndef LOKI_DEFAULT_CONSTNESS
bgstack15