Skip to content

Commit 8670554

Browse files
authored
add eol breaks (#568)
1 parent 8e894d6 commit 8670554

68 files changed

Lines changed: 66 additions & 66 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ Each part has different requirements and usage. Detailed instruction can be foun
3535
**Development**
3636

3737
* [Git workflow and change process](https://github.com/DLR-SC/memilio/wiki/git-workflow)
38-
* [Coding Guidelines](https://github.com/DLR-SC/memilio/wiki/coding-guidelines)
38+
* [Coding Guidelines](https://github.com/DLR-SC/memilio/wiki/coding-guidelines)

cpp/examples/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ target_link_libraries(ide_seir_example PRIVATE memilio ide_seir)
5454
if(MEMILIO_HAS_HDF5)
5555
add_executable(ode_secir_save_results ode_secir_save_results.cpp)
5656
target_link_libraries(ode_secir_save_results PRIVATE memilio ode_secir)
57-
endif()
57+
endif()

cpp/examples/ide_seir.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@ int main()
6868
model.calculate_EIR();
6969
//Print results.
7070
model.print_result(true);
71-
}
71+
}

cpp/examples/secirvvs.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,4 +130,4 @@ int main()
130130
printf("compartment %d: %.14f\n", (int)j, result.get_last_value()[j]);
131131
}
132132
}
133-
}
133+
}

cpp/memilio/epidemiology/simulation_day.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ class SimulationDay : public Index<SimulationDay>
3636

3737
} // namespace mio
3838

39-
#endif //MIO_EPI_SIMULATION_DAY_H
39+
#endif //MIO_EPI_SIMULATION_DAY_H

cpp/memilio/io/epi_data.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ IOResult<std::vector<int>> get_county_ids(const std::string& path)
5656

5757
} // namespace mio
5858

59-
#endif //MEMILIO_HAS_JSONCPP
59+
#endif //MEMILIO_HAS_JSONCPP

cpp/memilio/io/epi_data.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,4 +428,4 @@ inline IOResult<std::vector<VaccinationDataEntry>> read_vaccination_data(const s
428428

429429
#endif //MEMILIO_HAS_JSONCPP
430430

431-
#endif //MEMILIO_IO_EPI_DATA_H
431+
#endif //MEMILIO_IO_EPI_DATA_H

cpp/models/ide_seir/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ target_include_directories(ide_seir PUBLIC
99
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/..>
1010
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>
1111
)
12-
target_compile_options(ide_seir PRIVATE ${MEMILIO_CXX_FLAGS_ENABLE_WARNING_ERRORS})
12+
target_compile_options(ide_seir PRIVATE ${MEMILIO_CXX_FLAGS_ENABLE_WARNING_ERRORS})

cpp/models/ide_seir/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ This model is based on Integro-differential equations. The four compartments
77
- Recovered
88
are used to simulate the spread of the disease.
99

10-
An example can be found in [examples/ide_seir.cpp](../../examples/ide_seir.cpp)
10+
An example can be found in [examples/ide_seir.cpp](../../examples/ide_seir.cpp)

cpp/models/ide_seir/infection_state.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ namespace iseir
4141
} // namespace iseir
4242
} // namespace mio
4343

44-
#endif
44+
#endif

0 commit comments

Comments
 (0)