Commit 683ef76f authored by Dimitri van Heesch's avatar Dimitri van Heesch

Fixed compiler warnings in section.h

parent 9ead1e6b
...@@ -36,7 +36,7 @@ struct SectionInfo ...@@ -36,7 +36,7 @@ struct SectionInfo
SectionInfo(const char *f,const int lin,const char *l,const char *t, SectionInfo(const char *f,const int lin,const char *l,const char *t,
SectionType st,int lev,const char *r=0) : SectionType st,int lev,const char *r=0) :
label(l), title(t), type(st), ref(r), definition(0), label(l), title(t), type(st), ref(r), definition(0),
fileName(f), generated(FALSE), level(lev), lineNr(lin) fileName(f), lineNr(lin), generated(FALSE), level(lev)
{ {
} }
SectionInfo(const SectionInfo &s) SectionInfo(const SectionInfo &s)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment