diff --git a/doc/dox.h b/doc/dox.h
index af9eeb609..d63c8a806 100644
--- a/doc/dox.h
+++ b/doc/dox.h
@@ -1486,9 +1486,8 @@ Just copy'n'paste the template from Appendix A and adapt it for your needs.
with DefaultLogger::get()->[error, warn, debug, info].
-Make sure that your loader compiles against all build configurations on all supported platforms. This includes -noboost! To avoid problems,
-see the boost section on this page for a list of all 'allowed' boost classes (again, this grew historically when we had to accept that boost
-is not THAT widely spread that one could rely on it being available everywhere).
+Make sure that your loader compiles against all build configurations on all supported platforms. You can use our CI-build to check several platforms
+like Windows and Linux ( 32 bit and 64 bit ).
Provide some _free_ test models in <root>/test/models/<FormatName>/ and credit their authors.
@@ -1567,22 +1566,6 @@ NewMaterial->AddProperty(&aiString(MaterialName.c_str()), AI_MATKEY_NAME);//Mate
NewMaterial->AddProperty(&aiString(Texturename.c_str()), AI_MATKEY_TEXTURE(aiTextureType_DIFFUSE, 0));//again, Texturename is a std::string
@endcode
-@section boost Boost
-
-The boost whitelist:
-
-- boost.scoped_ptr
-- boost.scoped_array
-- boost.format
-- boost.random
-- boost.common_factor
-- boost.foreach
-- boost.tuple
-
-
-(if you happen to need something else, i.e. boost::thread, make this an optional feature.
-assimp_BUILD_BOOST_WORKAROUND is defined for -noboost builds)
-
@section appa Appendix A - Template for BaseImporter's abstract methods
@code