# HG changeset patch # User Trass3r # Date 1283268930 -7200 # Node ID e414dd80ebfac83b2b568198a247c8005adccaaa # Parent e6090d1aea7cbed51b6c9a526f2330e6d783674f moved Section diff -r e6090d1aea7c -r e414dd80ebfa dmd/Section.d --- a/dmd/Section.d Tue Aug 31 16:22:22 2010 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,22 +0,0 @@ -module dmd.Section; - -import dmd.DocComment; -import dmd.Scope; -import dmd.Dsymbol; -import dmd.OutBuffer; - -class Section -{ - ubyte* name; - uint namelen; - - ubyte* body_; - uint bodylen; - - int nooutput; - - void write(DocComment dc, Scope sc, Dsymbol s, OutBuffer buf) - { - assert(false); - } -} \ No newline at end of file diff -r e6090d1aea7c -r e414dd80ebfa dmd/ddoc/Sections.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dmd/ddoc/Sections.d Tue Aug 31 17:35:30 2010 +0200 @@ -0,0 +1,20 @@ +module dmd.Section; + +import dmd.DocComment; +import dmd.Scope; +import dmd.Dsymbol; +import dmd.OutBuffer; + +class Section +{ + string name; + + string body_; + + int nooutput; + + void write(DocComment dc, Scope sc, Dsymbol s, OutBuffer buf) + { + assert(false); + } +} \ No newline at end of file