kfdtest: Style cleanup

Clean up the KFDTest style via CPPLint. Some warnings remain regarding
volatile variables being cast to void*. This is the command used:
cpplint.py --linelength=120
--filter=-readability/multiline_string,-readability/todo,-build/include,-runtime/references

multiline_string is due to using ISA code
todo is to avoid errors that we don't have TODO(username) instead of TODO
include is about including the folder in the header includes
references is regarding non-const references '&' being const or using
pointers. That can be addressed later

Change-Id: I3c6622da0a13dd33ab29b2bfff48be25e763b750
This commit is contained in:
Kent Russell
2018-08-13 09:03:31 -04:00
bovenliggende 3f7b6356fd
commit dffac0a97e
33 gewijzigde bestanden met toevoegingen van 371 en 328 verwijderingen
@@ -34,7 +34,7 @@ enum LOGTYPE {
};
class KFDLog{};
std::ostream& operator << (KFDLog log ,LOGTYPE level);
std::ostream& operator << (KFDLog log, LOGTYPE level);
// @brief log additional details, to be displayed in the same format as other google test outputs
// currently not supported by google test