summaryrefslogtreecommitdiffstats
path: root/src/vhdlscanner.l
diff options
context:
space:
mode:
Diffstat (limited to 'src/vhdlscanner.l')
-rw-r--r--src/vhdlscanner.l9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/vhdlscanner.l b/src/vhdlscanner.l
index e9704ec..2e6f0ab 100644
--- a/src/vhdlscanner.l
+++ b/src/vhdlscanner.l
@@ -176,7 +176,7 @@ static void deleteSpecChars(char* str,char *buf)
*buf='\0';
}
-void getType(Entry* p,char* text)
+static void getType(Entry* p,char* text)
{
QCString name(text);
name=name.stripWhiteSpace();
@@ -241,7 +241,7 @@ void getType(Entry* p,char* text)
* adds signals found in entities|records|units
*/
-void addSignals(const char* str,int line, Entry *e,const char *comment=0)
+static void addSignals(const char* str,int line, Entry *e,const char *comment=0)
{
//printf("===> addSignals (%s) comment='%s'\n",str,comment);
QList<QCString> ql;
@@ -492,8 +492,7 @@ static Entry* getEntryAtLine(const Entry* ce,int line)
//-------------------------------------------------------------------------
-
-void parserInit()
+static void parserInit()
{
iCounter=0;
iTextCounter=0;
@@ -1803,7 +1802,7 @@ static void mergeGrouping(const Entry* ce,int)
* and so on..
*/
-void mapLibPackage(const Entry* ce)
+static void mapLibPackage(const Entry* ce)
{
Entry *lastComp=0;
while (TRUE)