From e37b92fb3bb2a04ccd66ed004c45012a8a40831d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Fri, 14 Jun 2019 12:07:22 +0200 Subject: [PATCH] astyle formatting [ci skip] --- lib/standards.h | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/lib/standards.h b/lib/standards.h index ba238411f..d476ade26 100644 --- a/lib/standards.h +++ b/lib/standards.h @@ -58,12 +58,12 @@ struct Standards { } const std::string getC(void) const { switch (c) { - case C89: - return "c89"; - case C99: - return "c99"; - case C11: - return "c11"; + case C89: + return "c89"; + case C99: + return "c99"; + case C11: + return "c11"; } return ""; } @@ -92,16 +92,16 @@ struct Standards { } const std::string getCPP(void) const { switch (cpp) { - case CPP03: - return "c++03"; - case CPP11: - return "c++11"; - case CPP14: - return "c++14"; - case CPP17: - return "c++17"; - case CPP20: - return "c++20"; + case CPP03: + return "c++03"; + case CPP11: + return "c++11"; + case CPP14: + return "c++14"; + case CPP17: + return "c++17"; + case CPP20: + return "c++20"; } return ""; }