diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2014-07-23 15:21:29 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2014-07-23 15:21:29 +0200 |
commit | bada6666c70977a058755ccf232e7d67b24adeed (patch) | |
tree | 1e92d50cebce96abaf9bce19e36026c47f77b9ba /libcult/cult/meta/class-p.hxx | |
parent | eaf34adcbd8095bc6d1f3371b1227f654c7b19fc (diff) |
New upstream release
Diffstat (limited to 'libcult/cult/meta/class-p.hxx')
-rw-r--r-- | libcult/cult/meta/class-p.hxx | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/libcult/cult/meta/class-p.hxx b/libcult/cult/meta/class-p.hxx deleted file mode 100644 index 6ac056d..0000000 --- a/libcult/cult/meta/class-p.hxx +++ /dev/null @@ -1,33 +0,0 @@ -// file : cult/meta/class-p.hxx -// author : Boris Kolpackov <boris@kolpackov.net> -// copyright : Copyright (c) 2005-2010 Boris Kolpackov -// license : GNU GPL v2 + exceptions; see accompanying LICENSE file - -#ifndef CULT_META_CLASS_HXX -#define CULT_META_CLASS_HXX - -#include <cult/types/fundamental.hxx> - -#include <cult/meta/answer.hxx> - -namespace Cult -{ - namespace Meta - { - template <typename X> - class class_p - { - //@@ g++ bug 14881 - public: - template <typename Y> static No test (...); - template <typename Y> static Yes test (Void* Y::*); - - public: - //@@ Qualification bug fixed for g++ 3.4.0. - static Boolean const r = - sizeof (class_p<X>::template test<X> (0)) == sizeof (Yes); - }; - } -} - -#endif // CULT_META_CLASS_HXX |