astyle formatting

[ci skip]
This commit is contained in:
Daniel Marjamäki 2016-08-01 13:01:01 +02:00
parent 095b2f73f7
commit 1c51fbce7a
2 changed files with 19 additions and 19 deletions

View File

@ -34,13 +34,13 @@ namespace {
} }
// CVE ID used: // CVE ID used:
static const CWE CWE119(119U); // Improper Restriction of Operations within the Bounds of a Memory Buffer static const CWE CWE119(119U); // Improper Restriction of Operations within the Bounds of a Memory Buffer
static const CWE CWE398(398U); // Indicator of Poor Code Quality static const CWE CWE398(398U); // Indicator of Poor Code Quality
static const CWE CWE664(664U); // Improper Control of a Resource Through its Lifetime static const CWE CWE664(664U); // Improper Control of a Resource Through its Lifetime
static const CWE CWE685(685U); // Function Call With Incorrect Number of Arguments static const CWE CWE685(685U); // Function Call With Incorrect Number of Arguments
static const CWE CWE686(686U); // Function Call With Incorrect Argument Type static const CWE CWE686(686U); // Function Call With Incorrect Argument Type
static const CWE CWE687(687U); // Function Call With Incorrectly Specified Argument Value static const CWE CWE687(687U); // Function Call With Incorrectly Specified Argument Value
static const CWE CWE910(910U); // Use of Expired File Descriptor static const CWE CWE910(910U); // Use of Expired File Descriptor
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
// std::cout << std::cout; // std::cout << std::cout;
@ -446,7 +446,7 @@ void CheckIO::invalidScanfError(const Token *tok)
"terminating null byte.\n" "terminating null byte.\n"
"Source: http://linux.die.net/man/3/scanf\n" "Source: http://linux.die.net/man/3/scanf\n"
"Source: http://www.opensource.apple.com/source/xnu/xnu-1456.1.26/libkern/stdio/scanf.c", "Source: http://www.opensource.apple.com/source/xnu/xnu-1456.1.26/libkern/stdio/scanf.c",
CWE119, false); CWE119, false);
} }
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------

View File

@ -295,18 +295,18 @@ public:
const char *platformString() const { const char *platformString() const {
switch (platformType) { switch (platformType) {
case Unix32: case Unix32:
return "unix32"; return "unix32";
case Unix64: case Unix64:
return "unix64"; return "unix64";
case Win32A: case Win32A:
return "win32A"; return "win32A";
case Win32W: case Win32W:
return "win32W"; return "win32W";
case Win64: case Win64:
return "win64"; return "win64";
default: default:
return "unknown"; return "unknown";
} }
} }