Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ign -> gz Macro Migration : gz-common (2) #371

Merged
merged 1 commit into from
Jun 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion profiler/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ option(IGN_PROFILER_REMOTERY "Deprecated. Enable the Remotery profiler"
# TODO(CH3): Remove the IGN_PROFILER_REMOTERY on deprecation
# and set the option to TRUE instead
option(GZ_PROFILER_REMOTERY "Enable the Remotery profiler"
IGN_PROFILER_REMOTERY)
${IGN_PROFILER_REMOTERY})

if(NOT IGN_PROFILER_REMOTERY)
message(DEPRECATION "The IGN_PROFILER_REMOTERY option is deprecated! Please use GZ_PROFILER_REMOTERY instead.")
Expand Down
2 changes: 1 addition & 1 deletion profiler/src/Profiler_Remotery_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ TEST(Profiler, ProfilerDisabled)
EXPECT_TRUE(GZ_PROFILER_ENABLE);
EXPECT_TRUE(GZ_PROFILER_VALID);
EXPECT_EQ(Profiler::Instance()->ImplementationName(),
"ign_profiler_remotery");
"gz_profiler_remotery");
}
2 changes: 1 addition & 1 deletion profiler/src/RemoteryProfilerImpl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ RemoteryProfilerImpl::~RemoteryProfilerImpl()
//////////////////////////////////////////////////
std::string RemoteryProfilerImpl::Name() const
{
return "ign_profiler_remotery";
return "gz_profiler_remotery";
}

//////////////////////////////////////////////////
Expand Down