File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -46,8 +46,8 @@ class ActorRegistry {
4646
4747 [[nodiscard]] bool contains (sg4::ActorPtr actor) const noexcept
4848 {
49- if (!actor)
50- return false ; // Safe handling for noexcept
49+ if (!actor) // LCOV_EXCL_LINE
50+ return false ; // LCOV_EXCL_LINE
5151 return actors_.find (actor) != actors_.end ();
5252 }
5353
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ std::shared_ptr<FileTransport> FileEngine::get_file_transport() const
7777 if (!transport) // LCOV_EXCL_LINE
7878 throw TransportEngineMismatchException (XBT_THROW_POINT, " Transport is not a FileTransport" ); // LCOV_EXCL_LINE
7979 return transport;
80- }
80+ } // LCOV_EXCL_LINE
8181
8282std::string FileEngine::get_path_to_dataset () const
8383{
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ std::shared_ptr<StagingTransport> StagingEngine::get_staging_transport() const
3939 if (!transport) // LCOV_EXCL_LINE
4040 throw TransportEngineMismatchException (XBT_THROW_POINT, " Transport is not a StagingTransport" ); // LCOV_EXCL_LINE
4141 return transport;
42- }
42+ } // LCOV_EXCL_LINE
4343
4444void StagingEngine::begin_pub_transaction ()
4545{
Original file line number Diff line number Diff line change @@ -334,7 +334,7 @@ std::vector<std::string> Stream::get_all_variables() const
334334 for (const auto & [name, var] : variables_)
335335 variable_names.push_back (name);
336336 return variable_names;
337- }
337+ } // LCOV_EXCL_LINE
338338
339339std::shared_ptr<Variable> Stream::inquire_variable (std::string_view name) const
340340{
You can’t perform that action at this time.
0 commit comments