diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:10:11 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:10:11 +0200 |
commit | c0cdb2ad99a1e2a6ade5ce76c91177a79258e669 (patch) | |
tree | 4701a015385d9a6a5a4ba99a8f1f5d400fff26b1 /shared/loki/ConstPolicy.h | |
parent | 3.13 (diff) | |
download | FreeFileSync-c0cdb2ad99a1e2a6ade5ce76c91177a79258e669.tar.gz FreeFileSync-c0cdb2ad99a1e2a6ade5ce76c91177a79258e669.tar.bz2 FreeFileSync-c0cdb2ad99a1e2a6ade5ce76c91177a79258e669.zip |
3.14
Diffstat (limited to 'shared/loki/ConstPolicy.h')
-rw-r--r-- | shared/loki/ConstPolicy.h | 30 |
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 |