diff --git a/Utils/pool_alloc_mixin.cti b/Utils/pool_alloc_mixin.cti index 6d66abc1f2847026c07b42517cd1d5eb49035673..9b739e9c6108f973888e99e10818298a7310f7dc 100644 --- a/Utils/pool_alloc_mixin.cti +++ b/Utils/pool_alloc_mixin.cti @@ -26,7 +26,7 @@ //#include "pool_alloc_mixin.ih" // Custom includes -#include <../Utils/senfassert.hh> +#include "../Utils/senfassert.hh" #define prefix_ inline ///////////////////////////////cti.p/////////////////////////////////////// diff --git a/doclib/html-munge.xsl b/doclib/html-munge.xsl index 8efc0f865fd553b3598e4715fb908d97d77b10fd..4579003dd004758debf40bbfae7a17b98e4089e2 100644 --- a/doclib/html-munge.xsl +++ b/doclib/html-munge.xsl @@ -269,5 +269,14 @@ <!-- Remove [external] references from the modules page --> <xsl:template match="div[@id='content2']/ul/li[a/@class='elRef'][a/@doxygen][code/text()='[external]'][not(ul)]"> </xsl:template> - + + <!-- Insert 'senf/' into include paths --> + <xsl:template match="code[starts-with(text(),'#include <')]/a"> + <xsl:copy> + <xsl:call-template name="copy-attributes"/> + <xsl:text>senf/</xsl:text> + <xsl:apply-templates/> + </xsl:copy> + </xsl:template> + </xsl:stylesheet>