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 f7e4643 commit 0edd017Copy full SHA for 0edd017
src/utils/terminal_pager.cpp
@@ -57,7 +57,7 @@ void terminal_pager::maybe_grab_cout()
57
}
58
59
60
-bool terminal_pager::process_input(const std::string& input)
+bool terminal_pager::process_input(std::string input)
61
{
62
if (input.size() == 0)
63
src/utils/terminal_pager.hpp
@@ -41,7 +41,7 @@ class terminal_pager
41
void maybe_grab_cout();
42
43
// Return true if should stop pager.
44
- bool process_input(const std::string& input);
+ bool process_input(std::string input);
45
46
void release_cout();
47
0 commit comments