diff --git a/corsika/output/NoOutput.hpp b/corsika/output/NoOutput.hpp index abee413e0d007e1b2de042de0249afe46b07e40a..788149b7047581f57398822fed2c1570189eedb4 100644 --- a/corsika/output/NoOutput.hpp +++ b/corsika/output/NoOutput.hpp @@ -54,7 +54,7 @@ namespace corsika { protected: void write(Code const&, units::si::HEPEnergyType const&, units::si::LengthType const&, - units::si::LengthType const&) {} + units::si::LengthType const&, units::si::TimeType const&) {} }; } // namespace corsika diff --git a/tests/output/testOutputManager.cpp b/tests/output/testOutputManager.cpp index 58f90589c2206ed1e01607cd216a6b76c53a20c9..c9194abfa210e0347e97c50a0dc4add954b03e25 100644 --- a/tests/output/testOutputManager.cpp +++ b/tests/output/testOutputManager.cpp @@ -26,7 +26,7 @@ struct DummyNoOutput : public NoOutput { NoOutput::getConfig(); NoOutput::getSummary(); } - void checkWrite() { NoOutput::write(Code::Unknown, 1_eV, 1_m, 1_m); } + void checkWrite() { NoOutput::write(Code::Unknown, 1_eV, 1_m, 1_m, 1_ns); } }; struct DummyOutput : public BaseOutput {