summaryrefslogtreecommitdiffstats
path: root/src/util.h
diff options
context:
space:
mode:
authorAdrian Negreanu <groleo@gmail.com>2017-09-25 12:44:20 (GMT)
committerAdrian Negreanu <groleo@gmail.com>2017-09-25 13:35:17 (GMT)
commit5df4341210ec2374b8b7c09f5df3cd8f4ff60f65 (patch)
treec05d14bc4383d98a1cdc5a4bc94ae738c133f65b /src/util.h
parent47d679b67952949d639ea9a206535e97a6154bb5 (diff)
downloadDoxygen-5df4341210ec2374b8b7c09f5df3cd8f4ff60f65.zip
Doxygen-5df4341210ec2374b8b7c09f5df3cd8f4ff60f65.tar.gz
Doxygen-5df4341210ec2374b8b7c09f5df3cd8f4ff60f65.tar.bz2
const-ify
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/util.h b/src/util.h
index af8a3b4..dd2f3aa 100644
--- a/src/util.h
+++ b/src/util.h
@@ -122,9 +122,9 @@ QCString getLanguageSpecificSeparator(SrcLangExt lang,bool classScope=FALSE);
//--------------------------------------------------------------------
void linkifyText(const TextGeneratorIntf &ol,
- Definition *scope,
- FileDef *fileScope,
- Definition *self,
+ const Definition *scope,
+ const FileDef *fileScope,
+ const Definition *self,
const char *text,
bool autoBreak=FALSE,
bool external=TRUE,
@@ -203,8 +203,8 @@ QCString resolveDefines(const char *n);
ClassDef *getClass(const char *key);
-ClassDef *getResolvedClass(Definition *scope,
- FileDef *fileScope,
+ClassDef *getResolvedClass(const Definition *scope,
+ const FileDef *fileScope,
const char *key,
MemberDef **pTypeDef=0,
QCString *pTemplSpec=0,
@@ -358,9 +358,9 @@ QCString stripExtension(const char *fName);
void replaceNamespaceAliases(QCString &scope,int i);
-int isAccessibleFrom(Definition *scope,FileDef *fileScope,Definition *item);
+int isAccessibleFrom(const Definition *scope,const FileDef *fileScope,const Definition *item);
-int isAccessibleFromWithExpScope(Definition *scope,FileDef *fileScope,Definition *item,
+int isAccessibleFromWithExpScope(const Definition *scope,const FileDef *fileScope,const Definition *item,
const QCString &explicitScopePart);
int computeQualifiedIndex(const QCString &name);
@@ -392,7 +392,7 @@ MemberDef *getMemberFromSymbol(Definition *scope,FileDef *fileScope,
const char *n);
bool checkIfTypedef(Definition *scope,FileDef *fileScope,const char *n);
-ClassDef *newResolveTypedef(FileDef *fileScope,MemberDef *md,
+ClassDef *newResolveTypedef(const FileDef *fileScope,MemberDef *md,
MemberDef **pMemType=0,QCString *pTemplSpec=0,
QCString *pResolvedType=0,
ArgumentList *actTemplParams=0);