We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33acaf0 commit 4515041Copy full SHA for 4515041
proxy_wasm_api.h
@@ -1583,13 +1583,9 @@ template <> inline std::string toString(std::string t) { return t; }
1583
1584
template <> inline std::string toString(bool t) { return t ? "true" : "false"; }
1585
1586
-template <typename T> struct StringToStringView {
1587
- typedef T type;
1588
-};
+template <typename T> struct StringToStringView { typedef T type; };
1589
1590
-template <> struct StringToStringView<std::string> {
1591
- typedef std::string_view type;
1592
+template <> struct StringToStringView<std::string> { typedef std::string_view type; };
1593
1594
inline uint32_t MetricBase::resolveFullName(const std::string &n) {
1595
auto it = metric_ids.find(n);
0 commit comments