Remove BOMs

Fix coding style and script
This commit is contained in:
Alexander Bock
2017-11-09 19:10:32 -05:00
parent aa20c677dd
commit 7b12a241ed
5 changed files with 5 additions and 5 deletions

View File

@@ -39,4 +39,4 @@ Model stringToModel(const std::string s) {
}
} // namespace fls
} // namespace openspace
} // namespace openspace

View File

@@ -45,4 +45,4 @@ bool convertCdfToFieldlinesState(FieldlinesState& state, const std::string cdfPa
} // namespace fls
} // namespace openspace
#endif // __OPENSPACE_MODULE_FIELDLINESSEQUENCE___KAMELEONFIELDLINEHELPER___H__
#endif // __OPENSPACE_MODULE_FIELDLINESSEQUENCE___KAMELEONFIELDLINEHELPER___H__

View File

@@ -1,4 +1,4 @@
/*****************************************************************************************
/*****************************************************************************************
* *
* OpenSpace *
* *

View File

@@ -1,4 +1,4 @@
/*****************************************************************************************
/*****************************************************************************************
* *
* OpenSpace *
* *

View File

@@ -310,7 +310,7 @@ def check_line_length(lines):
previousSymbols = {}
def check_header_file(file, component):
with open(file, 'r+') as f:
with open(file, 'r+', encoding="utf8") as f:
lines = f.readlines()
correctness = check_correctness(lines)