Remove misleading "const" from Linker::preprocessXX().

This commit is contained in:
Markus F.X.J. Oberhumer
2006-12-10 00:38:28 +01:00
parent edf384d2ee
commit 732d6710d3
2 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -66,9 +66,9 @@ protected:
bool reloc_done;
protected:
void preprocessSections(char *start, const char *end);
void preprocessSymbols(char *start, const char *end);
void preprocessRelocations(char *start, const char *end);
void preprocessSections(char *start, char *end);
void preprocessSymbols(char *start, char *end);
void preprocessRelocations(char *start, char *end);
Section *findSection(const char *name, bool fatal=true) const;
Symbol *findSymbol(const char *name, bool fatal=true) const;