Skip to content

Commit 382fb45

Browse files
authored
Fixed comment alignment
1 parent 92b45e1 commit 382fb45

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/Log.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ class Log {
600600

601601
void ClearEntry(const int p_LogfileId) {
602602
if (IsValidId(p_LogfileId)) {
603-
m_Logfiles[p_LogfileId].active = false; // not active
603+
m_Logfiles[p_LogfileId].active = false; // not active
604604
m_Logfiles[p_LogfileId].logfiletype = LOGFILE::NONE;
605605
m_Logfiles[p_LogfileId].filetype = LOGFILETYPE::NONE;
606606
m_Logfiles[p_LogfileId].name = "";
@@ -771,12 +771,12 @@ class Log {
771771

772772
if (ok && p_UseSpecifiedValue && (thisProperty == p_SpecifiedProperty)) { // replace specified property?
773773
value = p_SpecifiedPropertyValue; // yes - use value passed as parameter
774-
if (hdf5) { // yes - HDF5 file?
775-
logRecordValues.push_back(value); // yes - add value to vector of values
774+
if (hdf5) { // yes - HDF5 file?
775+
logRecordValues.push_back(value); // yes - add value to vector of values
776776
}
777-
else { // no - CSV, TSV, or TXT file
778-
valueStr = boost::apply_visitor(FormatVariantValue(), value, fmtStr); // format value
779-
logRecord += valueStr + delimiter; // add value string to log record - with delimiter
777+
else { // no - CSV, TSV, or TXT file
778+
valueStr = boost::apply_visitor(FormatVariantValue(), value, fmtStr); // format value
779+
logRecord += valueStr + delimiter; // add value string to log record - with delimiter
780780
}
781781
}
782782
else { // use current value

0 commit comments

Comments
 (0)