Skip to content

Commit

Permalink
iox-#1036 Add expiration date to deprecated, remove unneeded function
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Eltzschig <me@elchris.org>
  • Loading branch information
elfenpiff committed Jun 29, 2022
1 parent 8010d98 commit 5d844a2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 9 deletions.
3 changes: 2 additions & 1 deletion iceoryx_hoofs/include/iceoryx_hoofs/cxx/helplets.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,8 @@ template <uint64_t StringCapacity>
bool isValidPathToFile(const string<StringCapacity>& name) noexcept;

template <uint64_t StringCapacity>
[[deprecated("use isValidPathToFile")]] bool isValidFilePath(const string<StringCapacity>& name) noexcept;
[[deprecated("removed in 4.0, use isValidPathToFile")]] bool
isValidFilePath(const string<StringCapacity>& name) noexcept;

/// @brief returns true if the provided name is a valid path, otherwise false
/// @param[in] name the string to verify
Expand Down
6 changes: 0 additions & 6 deletions iceoryx_hoofs/include/iceoryx_hoofs/internal/cxx/helplets.inl
Original file line number Diff line number Diff line change
Expand Up @@ -158,12 +158,6 @@ inline bool isValidPathToDirectory(const string<StringCapacity>& name) noexcept
return true;
}

template <uint64_t StringCapacity>
inline bool isValidPath(const string<StringCapacity>& name) noexcept
{
return isValidPathToDirectory(name);
}

template <uint64_t StringCapacity>
inline bool doesEndWithPathSeparator(const string<StringCapacity>& name) noexcept
{
Expand Down
4 changes: 2 additions & 2 deletions iceoryx_posh/include/iceoryx_posh/roudi/roudi_app.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ class RouDiApp

protected:
/// @brief waits for the next signal to RouDi daemon
[[deprecated(
"use iox::posix::waitForTerminationRequest() from 'iceoryx_hoofs/posix_wrapper/signal_watcher.hpp'")]] bool
[[deprecated("removed in 4.0, use iox::posix::waitForTerminationRequest() from "
"'iceoryx_hoofs/posix_wrapper/signal_watcher.hpp'")]] bool
waitForSignal() noexcept;

iox::log::LogLevel m_logLevel{iox::log::LogLevel::kWarn};
Expand Down

0 comments on commit 5d844a2

Please sign in to comment.