summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/sbe/util/debug_print.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/exec/sbe/util/debug_print.h')
-rw-r--r--src/mongo/db/exec/sbe/util/debug_print.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mongo/db/exec/sbe/util/debug_print.h b/src/mongo/db/exec/sbe/util/debug_print.h
index 19e29d7bdf4..a11bb24c75c 100644
--- a/src/mongo/db/exec/sbe/util/debug_print.h
+++ b/src/mongo/db/exec/sbe/util/debug_print.h
@@ -60,16 +60,16 @@ public:
Command cmd;
std::string str;
- Block(std::string_view s) : cmd(cmdNone), str(s) {}
+ Block(StringData s) : cmd(cmdNone), str(s) {}
- Block(Command c, std::string_view s) : cmd(c), str(s) {}
+ Block(Command c, StringData s) : cmd(c), str(s) {}
Block(Command c) : cmd(c) {}
};
DebugPrinter(bool colorConsole = false) : _colorConsole(colorConsole) {}
- static void addKeyword(std::vector<Block>& ret, std::string_view k) {
+ static void addKeyword(std::vector<Block>& ret, StringData k) {
ret.emplace_back(Block::cmdColorCyan);
ret.emplace_back(Block{Block::cmdNoneNoSpace, k});
ret.emplace_back(Block::cmdColorNone);
@@ -92,7 +92,7 @@ public:
ret.emplace_back(Block{Block::cmdNoneNoSpace, " "});
}
- static void addIdentifier(std::vector<Block>& ret, std::string_view k) {
+ static void addIdentifier(std::vector<Block>& ret, StringData k) {
ret.emplace_back(Block::cmdColorGreen);
ret.emplace_back(Block{Block::cmdNoneNoSpace, k});
ret.emplace_back(Block::cmdColorNone);