astyle formatting

[ci skip]
This commit is contained in:
Daniel Marjamäki 2016-02-08 10:44:04 +01:00
parent 1ab5805d98
commit 3da997e163
1 changed files with 13 additions and 5 deletions

View File

@ -51,10 +51,18 @@ void VarInfo::print()
std::string status;
switch (it->second.status) {
case DEALLOC: status = "dealloc"; break;
case ALLOC: status = "alloc"; break;
case NOALLOC: status = "noalloc"; break;
default: status = "?"; break;
case DEALLOC:
status = "dealloc";
break;
case ALLOC:
status = "alloc";
break;
case NOALLOC:
status = "noalloc";
break;
default:
status = "?";
break;
};
std::cout << "status=" << status << " "