2
0
mirror of https://github.com/boostorg/mysql.git synced 2026-02-21 03:02:18 +00:00

Moved all names into namespace boost::mysql

This commit is contained in:
ruben
2020-03-19 17:19:43 +00:00
parent dafe0fa1d4
commit afdc3bfd19
82 changed files with 621 additions and 615 deletions

View File

@@ -9,14 +9,14 @@
#include "boost/mysql/prepared_statement.hpp"
#include <boost/asio/ip/tcp.hpp>
using namespace mysql::detail;
using namespace boost::mysql::detail;
namespace
{
using stream_type = boost::asio::ip::tcp::socket;
using channel_type = mysql::detail::channel<stream_type>;
using stmt_type = mysql::prepared_statement<stream_type>;
using channel_type = channel<stream_type>;
using stmt_type = boost::mysql::prepared_statement<stream_type>;
struct PreparedStatementTest : public testing::Test
{