From dec9c6d96e9ee0644f5828d6bb300c38b20f95a6 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Tue, 31 Aug 2004 22:11:37 +0000 Subject: [PATCH] removed as defunct [SVN r24841] --- include/boost/python/detail/char_array.hpp | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 include/boost/python/detail/char_array.hpp diff --git a/include/boost/python/detail/char_array.hpp b/include/boost/python/detail/char_array.hpp deleted file mode 100644 index 2e5952e6..00000000 --- a/include/boost/python/detail/char_array.hpp +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright David Abrahams 2002. -// Distributed under the Boost Software License, Version 1.0. (See -// accompanying file LICENSE_1_0.txt or copy at -// http://www.boost.org/LICENSE_1_0.txt) -#ifndef CHAR_ARRAY_DWA2002129_HPP -# define CHAR_ARRAY_DWA2002129_HPP - -namespace boost { namespace python { namespace detail { - -// This little package is used to transmit the number of arguments -// from the helper functions below to the sizeof() expression below. -// Because we can never have an array of fewer than 1 element, we -// add 1 to n and then subtract 1 from the result of sizeof() below. -template -struct char_array -{ - char elements[n+1]; -}; - -}}} // namespace boost::python::detail - -#endif // CHAR_ARRAY_DWA2002129_HPP