🐛 fix: align trace value type
This commit is contained in:
@@ -56,12 +56,12 @@ export namespace lsp::protocol
|
||||
ProgressToken token;
|
||||
};
|
||||
|
||||
using TraceValue = std::string_view;
|
||||
using TraceValue = string;
|
||||
namespace TraceValueLiterals
|
||||
{
|
||||
inline constexpr TraceValue Off = "off";
|
||||
inline constexpr TraceValue Messages = "messages";
|
||||
inline constexpr TraceValue Verbose = "verbose";
|
||||
inline const TraceValue Off = "off";
|
||||
inline const TraceValue Messages = "messages";
|
||||
inline const TraceValue Verbose = "verbose";
|
||||
}
|
||||
|
||||
struct SetTraceParams
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
module;
|
||||
|
||||
#include <string_view>
|
||||
|
||||
export module lsp.provider.trace.set_trace;
|
||||
import spdlog;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user