Skip to content

Commit

Permalink
Let's do this again...
Browse files Browse the repository at this point in the history
  • Loading branch information
amete committed Aug 1, 2023
1 parent 7a19b33 commit 1e71141
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package/tests/test_fields.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
const std::string base_path = TO_STRING(PRMON_SOURCE_DIR);
const std::string prmon_path = base_path + "/package/prmon";

static const std::shared_ptr<spdlog::sinks::stdout_color_sink_st> c_sink{
std::shared_ptr<spdlog::sinks::stdout_color_sink_st> c_sink{
std::make_shared<spdlog::sinks::stdout_color_sink_st>()};
static const std::shared_ptr<spdlog::sinks::basic_file_sink_st> f_sink{
std::shared_ptr<spdlog::sinks::basic_file_sink_st> f_sink{
std::make_shared<spdlog::sinks::basic_file_sink_st>("prmon.log", true)};

bool prmon::sigusr1 = false;
Expand Down
4 changes: 2 additions & 2 deletions package/tests/test_values.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ const std::vector<pid_t> mother_pid{1729};

const std::string base_path = TO_STRING(TESTS_SOURCE_DIR);

static const std::shared_ptr<spdlog::sinks::stdout_color_sink_st> c_sink{
std::shared_ptr<spdlog::sinks::stdout_color_sink_st> c_sink{
std::make_shared<spdlog::sinks::stdout_color_sink_st>()};
static const std::shared_ptr<spdlog::sinks::basic_file_sink_st> f_sink{
std::shared_ptr<spdlog::sinks::basic_file_sink_st> f_sink{
std::make_shared<spdlog::sinks::basic_file_sink_st>("prmon.log", true)};

bool prmon::sigusr1 = false;
Expand Down

0 comments on commit 1e71141

Please sign in to comment.