diff --git a/doc/v2/faq.html b/doc/v2/faq.html index 3c2b4c24..3cd028ef 100644 --- a/doc/v2/faq.html +++ b/doc/v2/faq.html @@ -57,6 +57,11 @@
How can I wrap a function which needs to take ownership of a raw pointer?
+ +
Compilation takes too much time and eats too much memory! + What can I do to make it faster?
+ +
How do I create sub-packages using Boost.Python?

@@ -543,6 +548,20 @@ void b_insert(B& b, std::auto_ptr<A> a) "manage_new_object.html#manage_new_object-spec">manage_new_object will also be held by auto_ptr, so this transfer-of-ownership will also work correctly. + +

Compilation takes too much time and eats too + much memory! What can I do to make it faster?

+

+ Please refer to the Techniques + section in the tutorial. +

+ +

How do I create sub-packages using Boost.Python?

+

+ In the Techniques + section of the tutorial this topic is explored. +

+

Revised