80 column fixes

This commit is contained in:
Matt Pharr
2012-02-06 12:39:46 -08:00
parent fddc5e022e
commit 96a429694f

View File

@@ -227,13 +227,14 @@ Module::AddGlobalVariable(Symbol *sym, Expr *initExpr, bool isConst) {
}
if (symbolTable->LookupFunction(sym->name.c_str())) {
Error(sym->pos, "Global variable \"%s\" shadows previously-declared function.",
sym->name.c_str());
Error(sym->pos, "Global variable \"%s\" shadows previously-declared "
"function.", sym->name.c_str());
return;
}
if (sym->storageClass == SC_EXTERN_C) {
Error(sym->pos, "extern \"C\" qualifier can only be used for functions.");
Error(sym->pos, "extern \"C\" qualifier can only be used for "
"functions.");
return;
}