commit | ae29b8c4d22fddb9f17610f87d27b53c95509e7c | [log] [tgz] |
---|---|---|
author | Adriana Kobylak <anoo@us.ibm.com> | Wed Apr 24 11:19:18 2019 -0500 |
committer | Ed Tanous <ed.tanous@intel.com> | Thu May 02 00:37:45 2019 +0000 |
tree | 5d01a7b1e328ead214f719dc6de1f70929dde049 | |
parent | 7bffdb7e9da69ae5416cda8df826372c33716beb [diff] [blame] |
bmcweb: /s/boost::beast::string_view/std::string_view/g Follow-on to https://gerrit.openbmc-project.xyz/c/openbmc/bmcweb/+/18891 Tested: Checked that the host console and virtual media endpoints still worked as expected. Change-Id: Ifdc5f21f3668bdf9bd24189504aaeb17b232c921 Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
diff --git a/include/obmc_console.hpp b/include/obmc_console.hpp index 5797613..ca723d3 100644 --- a/include/obmc_console.hpp +++ b/include/obmc_console.hpp
@@ -76,7 +76,7 @@ } return; } - boost::beast::string_view payload(outputBuffer.data(), bytesRead); + std::string_view payload(outputBuffer.data(), bytesRead); for (auto session : sessions) { session->sendBinary(payload);