Skip to content

Commit a3a09d7

Browse files
leoparenteclaude
andcommitted
fix: convert Corrade StringView to std::string in Taps.h json assignment
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent a7577ab commit a3a09d7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/Taps.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#include "Configurable.h"
1010
#include "InputModulePlugin.h"
1111
#include <yaml-cpp/yaml.h>
12+
#include "CorradeCompat.h"
1213

1314
namespace visor {
1415

@@ -56,7 +57,7 @@ class Tap : public AbstractModule
5657

5758
void info_json(json &j) const override
5859
{
59-
j["input_type"] = _input_plugin->plugin();
60+
j["input_type"] = corrade_to_std_string(_input_plugin->plugin());
6061
j["interface"] = _input_plugin->pluginInterface();
6162
config_json(j["config"]);
6263
_tags->config_json(j["tags"]);

0 commit comments

Comments
 (0)