]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/parameter/test/literate/template-keywords1.cpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / parameter / test / literate / template-keywords1.cpp
index 20afaad84e2314f06e4d74af04baa8a270bc14d4..a1adfa3e44acf5c9241fefdd1e70452771d8c10b 100644 (file)
@@ -1,11 +1,17 @@
 
 #include <boost/parameter.hpp>
+
 namespace boost { namespace python {
 
-namespace tag { struct class_type; } // keyword tag type
-template <class T>
-struct class_type
-  : parameter::template_keyword<tag::class_type,T>
-{};
+    namespace tag {
+
+        struct class_type;  // keyword tag type
+    }
 
+    template <typename T>
+    struct class_type
+      : boost::parameter::template_keyword<boost::python::tag::class_type,T>
+    {
+    };
 }}
+