SWDEV-306940 - Fix hip errors/warnings by CppCheck (#2486)
Change-Id: I91f5e97b0c7ca80b6d21fa66d24e3cf9fde716a9
This commit is contained in:
committed by
GitHub
parent
9ba5219d23
commit
833e962ddd
@@ -401,7 +401,6 @@ void ResultDatabase::DumpCsv(string fileName) {
|
||||
// ****************************************************************************
|
||||
|
||||
bool ResultDatabase::IsFileEmpty(string fileName) {
|
||||
bool fileEmpty;
|
||||
|
||||
ifstream file(fileName.c_str());
|
||||
|
||||
@@ -409,6 +408,7 @@ bool ResultDatabase::IsFileEmpty(string fileName) {
|
||||
if (!file.good()) {
|
||||
return true;
|
||||
} else {
|
||||
bool fileEmpty;
|
||||
fileEmpty = (bool)(file.peek() == ifstream::traits_type::eof());
|
||||
file.close();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user