]> git.lyx.org Git - features.git/commitdiff
two new files
authorLars Gullik Bjønnes <larsbj@gullik.org>
Tue, 18 Jun 2002 15:40:03 +0000 (15:40 +0000)
committerLars Gullik Bjønnes <larsbj@gullik.org>
Tue, 18 Jun 2002 15:40:03 +0000 (15:40 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4416 a592a061-630c-0410-9148-cb99ea01b6c8

boost/boost/preprocessor/detail/cat.hpp [new file with mode: 0644]
boost/boost/preprocessor/detail/expand.hpp [new file with mode: 0644]

diff --git a/boost/boost/preprocessor/detail/cat.hpp b/boost/boost/preprocessor/detail/cat.hpp
new file mode 100644 (file)
index 0000000..8ccad4e
--- /dev/null
@@ -0,0 +1,25 @@
+#ifndef BOOST_PREPROCESSOR_DETAIL_CAT_HPP
+#define BOOST_PREPROCESSOR_DETAIL_CAT_HPP
+
+/* Copyright (C) 2002 Vesa Karvonen
+ *
+ * Permission to copy, use, modify, sell and distribute this software is
+ * granted provided this copyright notice appears in all copies. This
+ * software is provided "as is" without express or implied warranty, and
+ * with no claim as to its suitability for any purpose.
+ *
+ * See http://www.boost.org for most recent version.
+ */
+
+#define BOOST_PP_DETAIL_CAT2(A,B) BOOST_PP_DETAIL_DO_CAT2(A,B)
+#define BOOST_PP_DETAIL_DO_CAT2(A,B) A##B
+
+#define BOOST_PP_DETAIL_CAT3(A,B,C) BOOST_PP_DETAIL_DO_CAT3(A,B,C)
+#define BOOST_PP_DETAIL_DO_CAT3(A,B,C) A##B##C
+
+#define BOOST_PP_DETAIL_CAT4(A,B,C,D) BOOST_PP_DETAIL_DO_CAT4(A,B,C,D)
+#define BOOST_PP_DETAIL_DO_CAT4(A,B,C,D) A##B##C##D
+
+#define BOOST_PP_DETAIL_CAT5(A,B,C,D,E) BOOST_PP_DETAIL_DO_CAT5(A,B,C,D,E)
+#define BOOST_PP_DETAIL_DO_CAT5(A,B,C,D,E) A##B##C##D##E
+#endif
diff --git a/boost/boost/preprocessor/detail/expand.hpp b/boost/boost/preprocessor/detail/expand.hpp
new file mode 100644 (file)
index 0000000..dde4af0
--- /dev/null
@@ -0,0 +1,15 @@
+#ifndef BOOST_PREPROCESSOR_DETAIL_EXPAND_HPP
+#define BOOST_PREPROCESSOR_DETAIL_EXPAND_HPP
+
+/* Copyright (C) 2002 Vesa Karvonen
+ *
+ * Permission to copy, use, modify, sell and distribute this software is
+ * granted provided this copyright notice appears in all copies. This
+ * software is provided "as is" without express or implied warranty, and
+ * with no claim as to its suitability for any purpose.
+ *
+ * See http://www.boost.org for most recent version.
+ */
+
+#define BOOST_PP_DETAIL_EXPAND(X) X
+#endif