From 44e9ffc5ca814030865b0708c607ef89922c3f77 Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Tue, 6 Jul 2004 22:44:33 +0000 Subject: [PATCH] correction as per Niall [SVN r23386] --- doc/v2/faq.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/v2/faq.html b/doc/v2/faq.html index 64c1b11c..56b91fe8 100644 --- a/doc/v2/faq.html +++ b/doc/v2/faq.html @@ -701,7 +701,7 @@ void Export_FXThread() functions with void * arguments or return values using thin wrappers and the opaque pointer facility. E.g.:
// Declare the following in each translation unit
-struct void_; // Deliberately do not define
+struct void_ {};
 BOOST_PYTHON_OPAQUE_SPECIALIZED_TYPE_ID(void_);
 
 void *foo(int par1, void *par2);