Skip to content

Commit

Permalink
iox-eclipse-iceoryx#91 More findings
Browse files Browse the repository at this point in the history
Signed-off-by: Simon Hoinkis <simon.hoinkis@apex.ai>
  • Loading branch information
mossmaurice committed Dec 14, 2020
1 parent edb6196 commit 0a3e3da
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class CmdLineParser
char* argv[],
const CmdLineArgumentParsingMode cmdLineParsingMode = CmdLineArgumentParsingMode::ALL) noexcept;

void printParameters() noexcept;
void printParameters() const noexcept;

bool getRun() const noexcept;
iox::log::LogLevel getLogLevel() const noexcept;
Expand Down
2 changes: 1 addition & 1 deletion iceoryx_posh/source/roudi/roudi_cmd_line_parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ units::Duration CmdLineParser::getProcessKillDelay() const noexcept
return m_processKillDelay;
}

void CmdLineParser::printParameters() noexcept
void CmdLineParser::printParameters() const noexcept
{
LogVerbose() << "Command line parameters are..";
LogVerbose() << "Log level: " << m_logLevel;
Expand Down
2 changes: 1 addition & 1 deletion iceoryx_posh/source/runtime/posh_runtime.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ PoshRuntime& PoshRuntime::getInstance(cxx::optional<const ProcessName_t*> name)

PoshRuntime::PoshRuntime(cxx::optional<const ProcessName_t*> name, const bool doMapSharedMemoryIntoThread) noexcept
: m_appName(verifyInstanceName(name))
, m_MqInterface(roudi::MQ_ROUDI_NAME, *name.value(), roudi::PROCESS_WAITING_FOR_ROUDI_TIMEOUT)
, m_MqInterface(roudi::MQ_ROUDI_NAME, *name.value(), runtime::PROCESS_WAITING_FOR_ROUDI_TIMEOUT)
, m_ShmInterface(doMapSharedMemoryIntoThread,
m_MqInterface.getShmTopicSize(),
m_MqInterface.getSegmentId(),
Expand Down

0 comments on commit 0a3e3da

Please sign in to comment.