astyle formatting

[ci skip]
This commit is contained in:
Daniel Marjamäki 2019-06-14 12:07:22 +02:00
parent 44670005ea
commit e37b92fb3b
1 changed files with 16 additions and 16 deletions

View File

@ -58,12 +58,12 @@ struct Standards {
} }
const std::string getC(void) const { const std::string getC(void) const {
switch (c) { switch (c) {
case C89: case C89:
return "c89"; return "c89";
case C99: case C99:
return "c99"; return "c99";
case C11: case C11:
return "c11"; return "c11";
} }
return ""; return "";
} }
@ -92,16 +92,16 @@ struct Standards {
} }
const std::string getCPP(void) const { const std::string getCPP(void) const {
switch (cpp) { switch (cpp) {
case CPP03: case CPP03:
return "c++03"; return "c++03";
case CPP11: case CPP11:
return "c++11"; return "c++11";
case CPP14: case CPP14:
return "c++14"; return "c++14";
case CPP17: case CPP17:
return "c++17"; return "c++17";
case CPP20: case CPP20:
return "c++20"; return "c++20";
} }
return ""; return "";
} }