Skip to content

Commit

Permalink
[config] Removed quoteStrings and unused variable in config test. (#1718
Browse files Browse the repository at this point in the history
)
  • Loading branch information
Peguen authored Aug 22, 2024
1 parent bfea308 commit 4f8bad0
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
4 changes: 0 additions & 4 deletions ecal/core/src/config/default_configuration.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@

namespace
{
std::string quoteString(const char* str_) {
return std::string("\"") + std::string(str_) + std::string("\"");
}

std::string quoteString(const std::string& str_) {
return std::string("\"") + str_ + std::string("\"");
}
Expand Down
1 change: 0 additions & 1 deletion ecal/tests/cpp/config_test/src/config_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ TEST(core_cpp_config /*unused*/, user_config_passing /*unused*/)
const int upd_snd_buff = (5242880 + 1024);

// Monitoring options
const unsigned int mon_timeout = 6000U;
const std::string mon_filter_excl = "_A.*";
const eCAL_Logging_Filter mon_log_filter_con = log_level_warning;

Expand Down

0 comments on commit 4f8bad0

Please sign in to comment.