Skip to content
Snippets Groups Projects
Commit 8c217ab9 authored by g0dil's avatar g0dil
Browse files

Add 'senf/' to #include path documentation

parent 27c6da00
No related branches found
No related tags found
No related merge requests found
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
//#include "pool_alloc_mixin.ih" //#include "pool_alloc_mixin.ih"
// Custom includes // Custom includes
#include <../Utils/senfassert.hh> #include "../Utils/senfassert.hh"
#define prefix_ inline #define prefix_ inline
///////////////////////////////cti.p/////////////////////////////////////// ///////////////////////////////cti.p///////////////////////////////////////
......
...@@ -269,5 +269,14 @@ ...@@ -269,5 +269,14 @@
<!-- Remove [external] references from the modules page --> <!-- 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 match="div[@id='content2']/ul/li[a/@class='elRef'][a/@doxygen][code/text()='[external]'][not(ul)]">
</xsl:template> </xsl:template>
<!-- Insert 'senf/' into include paths -->
<xsl:template match="code[starts-with(text(),'#include &lt;')]/a">
<xsl:copy>
<xsl:call-template name="copy-attributes"/>
<xsl:text>senf/</xsl:text>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet> </xsl:stylesheet>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment