mirror of
https://github.com/intel/llvm.git
synced 2026-01-15 04:17:17 +08:00
[lldb][NFCI] Remove unneeded ConstString from intel-pt plugin (#66721)
This is a follow-up to 14d95b26ae. I would
have changed it in that commit, but I don't build the intel-pt plugin so
I didn't see this until later.
This commit is contained in:
@@ -48,8 +48,8 @@ enum {
|
||||
#include "TraceIntelPTPropertiesEnum.inc"
|
||||
};
|
||||
|
||||
ConstString TraceIntelPT::PluginProperties::GetSettingName() {
|
||||
return ConstString(TraceIntelPT::GetPluginNameStatic());
|
||||
llvm::StringRef TraceIntelPT::PluginProperties::GetSettingName() {
|
||||
return TraceIntelPT::GetPluginNameStatic();
|
||||
}
|
||||
|
||||
TraceIntelPT::PluginProperties::PluginProperties() : Properties() {
|
||||
|
||||
@@ -26,7 +26,7 @@ public:
|
||||
/// Properties to be used with the `settings` command.
|
||||
class PluginProperties : public Properties {
|
||||
public:
|
||||
static ConstString GetSettingName();
|
||||
static llvm::StringRef GetSettingName();
|
||||
|
||||
PluginProperties();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user