diff options
-rw-r--r-- | lib/mariadb_repl.h | 8 | ||||
-rw-r--r-- | lib/streamSupport.cpp | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/lib/mariadb_repl.h b/lib/mariadb_repl.h index 109385e..c57a810 100644 --- a/lib/mariadb_repl.h +++ b/lib/mariadb_repl.h @@ -8,4 +8,12 @@ #include <mariadb_rpl.h> +#include <string_view> + +inline std::string_view +operator*(const MARIADB_STRING & mbstr) +{ + return {mbstr.str, mbstr.length}; +} + #endif diff --git a/lib/streamSupport.cpp b/lib/streamSupport.cpp index 2665b98..f3c88cf 100644 --- a/lib/streamSupport.cpp +++ b/lib/streamSupport.cpp @@ -18,7 +18,7 @@ namespace std { std::ostream & operator<<(std::ostream & s, const MARIADB_STRING & str) { - return s << std::string_view(str.str, str.length); + return s << *str; } std::ostream & |