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

Renamed aux->auxiliar (Windows reserved name)

This commit is contained in:
ruben
2020-03-20 22:15:49 +00:00
parent ed7577d525
commit d4e7d4627a
19 changed files with 30 additions and 30 deletions

View File

@@ -1,5 +1,5 @@
#ifndef INCLUDE_BOOST_MYSQL_DETAIL_AUX_BYTESTR_HPP_
#define INCLUDE_BOOST_MYSQL_DETAIL_AUX_BYTESTR_HPP_
#ifndef INCLUDE_BOOST_MYSQL_DETAIL_AUXILIAR_BYTESTRING_HPP_
#define INCLUDE_BOOST_MYSQL_DETAIL_AUXILIAR_BYTESTRING_HPP_
#include <vector>
@@ -18,4 +18,4 @@ using bytestring = std::vector<std::uint8_t>;
#endif /* INCLUDE_BOOST_MYSQL_DETAIL_AUX_BYTESTR_HPP_ */
#endif /* INCLUDE_BOOST_MYSQL_DETAIL_AUXILIAR_BYTESTRING_HPP_ */

View File

@@ -1,5 +1,5 @@
#ifndef INCLUDE_BOOST_MYSQL_DETAIL_AUX_GET_STRUCT_FIELDS_HPP_
#define INCLUDE_BOOST_MYSQL_DETAIL_AUX_GET_STRUCT_FIELDS_HPP_
#ifndef INCLUDE_BOOST_MYSQL_DETAIL_AUXILIAR_GET_STRUCT_FIELDS_HPP_
#define INCLUDE_BOOST_MYSQL_DETAIL_AUXILIAR_GET_STRUCT_FIELDS_HPP_
namespace boost {
namespace mysql {
@@ -23,4 +23,4 @@ struct get_struct_fields
} // boost
#endif /* INCLUDE_BOOST_MYSQL_DETAIL_AUX_GET_STRUCT_FIELDS_HPP_ */
#endif /* INCLUDE_BOOST_MYSQL_DETAIL_AUXILIAR_GET_STRUCT_FIELDS_HPP_ */

View File

@@ -1,5 +1,5 @@
#ifndef INCLUDE_BOOST_MYSQL_DETAIL_AUX_STRINGIZE_HPP_
#define INCLUDE_BOOST_MYSQL_DETAIL_AUX_STRINGIZE_HPP_
#ifndef INCLUDE_BOOST_MYSQL_DETAIL_AUXILIAR_STRINGIZE_HPP_
#define INCLUDE_BOOST_MYSQL_DETAIL_AUXILIAR_STRINGIZE_HPP_
#include <string>
#include <sstream>
@@ -22,4 +22,4 @@ std::string stringize(const Types&... inputs)
#endif /* INCLUDE_BOOST_MYSQL_DETAIL_AUX_STRINGIZE_HPP_ */
#endif /* INCLUDE_BOOST_MYSQL_DETAIL_AUXILIAR_STRINGIZE_HPP_ */

View File

@@ -1,5 +1,5 @@
#ifndef INCLUDE_BOOST_MYSQL_DETAIL_AUX_TMP_HPP_
#define INCLUDE_BOOST_MYSQL_DETAIL_AUX_TMP_HPP_
#ifndef INCLUDE_BOOST_MYSQL_DETAIL_AUXILIAR_TMP_HPP_
#define INCLUDE_BOOST_MYSQL_DETAIL_AUXILIAR_TMP_HPP_
#include <type_traits>
@@ -28,4 +28,4 @@ constexpr bool is_one_of_v = is_one_of<T, Types...>::value;
} // boost
#endif /* INCLUDE_BOOST_MYSQL_DETAIL_AUX_TMP_HPP_ */
#endif /* INCLUDE_BOOST_MYSQL_DETAIL_AUXILIAR_TMP_HPP_ */

View File

@@ -1,5 +1,5 @@
#ifndef INCLUDE_BOOST_MYSQL_DETAIL_AUX_VALUE_HOLDER_HPP_
#define INCLUDE_BOOST_MYSQL_DETAIL_AUX_VALUE_HOLDER_HPP_
#ifndef INCLUDE_BOOST_MYSQL_DETAIL_AUXILIAR_VALUE_HOLDER_HPP_
#define INCLUDE_BOOST_MYSQL_DETAIL_AUXILIAR_VALUE_HOLDER_HPP_
#include <utility>
@@ -51,4 +51,4 @@ using get_value_type_t = typename get_value_type<T>::type;
#endif /* INCLUDE_BOOST_MYSQL_DETAIL_AUX_VALUE_HOLDER_HPP_ */
#endif /* INCLUDE_BOOST_MYSQL_DETAIL_AUXILIAR_VALUE_HOLDER_HPP_ */

View File

@@ -2,7 +2,7 @@
#define MYSQL_ASIO_IMPL_CHANNEL_HPP
#include "boost/mysql/error.hpp"
#include "boost/mysql/detail/aux/bytestr.hpp"
#include "boost/mysql/detail/auxiliar/bytestring.hpp"
#include "boost/mysql/detail/protocol/capabilities.hpp"
#include <boost/asio/buffer.hpp>
#include <boost/asio/async_result.hpp>

View File

@@ -2,7 +2,7 @@
#define INCLUDE_BOOST_MYSQL_DETAIL_PROTOCOL_COMMON_MESSAGES_HPP_
#include "boost/mysql/detail/protocol/deserialization_context.hpp"
#include "boost/mysql/detail/aux/get_struct_fields.hpp"
#include "boost/mysql/detail/auxiliar/get_struct_fields.hpp"
#include "boost/mysql/detail/protocol/constants.hpp"
#include "boost/mysql/collation.hpp"
#include "boost/mysql/error.hpp"

View File

@@ -4,7 +4,7 @@
#include "boost/mysql/detail/protocol/serialization_context.hpp"
#include "boost/mysql/detail/protocol/deserialization_context.hpp"
#include "boost/mysql/detail/protocol/protocol_types.hpp"
#include "boost/mysql/detail/aux/get_struct_fields.hpp"
#include "boost/mysql/detail/auxiliar/get_struct_fields.hpp"
#include "boost/mysql/error.hpp"
namespace boost {

View File

@@ -4,7 +4,7 @@
#include <variant>
#include "boost/mysql/detail/protocol/serialization.hpp"
#include "boost/mysql/detail/protocol/null_bitmap_traits.hpp"
#include "boost/mysql/detail/aux/tmp.hpp"
#include "boost/mysql/detail/auxiliar/tmp.hpp"
namespace boost {
namespace mysql {

View File

@@ -5,7 +5,7 @@
#include "boost/mysql/detail/protocol/serialization_context.hpp"
#include "boost/mysql/detail/protocol/deserialization_context.hpp"
#include "boost/mysql/detail/protocol/constants.hpp"
#include "boost/mysql/detail/aux/get_struct_fields.hpp"
#include "boost/mysql/detail/auxiliar/get_struct_fields.hpp"
#include "boost/mysql/value.hpp"
#include "boost/mysql/error.hpp"

View File

@@ -1,7 +1,7 @@
#ifndef MYSQL_ASIO_IMPL_BASIC_TYPES_HPP
#define MYSQL_ASIO_IMPL_BASIC_TYPES_HPP
#include "boost/mysql/detail/aux/value_holder.hpp"
#include "boost/mysql/detail/auxiliar/value_holder.hpp"
#include <cstdint>
#include <string_view>
#include <array>

View File

@@ -2,7 +2,7 @@
#define INCLUDE_BOOST_MYSQL_DETAIL_PROTOCOL_QUERY_MESSAGES_HPP_
#include "boost/mysql/detail/protocol/protocol_types.hpp"
#include "boost/mysql/detail/aux/get_struct_fields.hpp"
#include "boost/mysql/detail/auxiliar/get_struct_fields.hpp"
#include <tuple>
namespace boost {

View File

@@ -7,8 +7,8 @@
#include "boost/mysql/detail/protocol/protocol_types.hpp"
#include "boost/mysql/detail/protocol/serialization_context.hpp"
#include "boost/mysql/detail/protocol/deserialization_context.hpp"
#include "boost/mysql/detail/aux/get_struct_fields.hpp"
#include "boost/mysql/detail/aux/bytestr.hpp"
#include "boost/mysql/detail/auxiliar/get_struct_fields.hpp"
#include "boost/mysql/detail/auxiliar/bytestring.hpp"
#include "boost/mysql/value.hpp"
#include "boost/mysql/error.hpp"

View File

@@ -3,7 +3,7 @@
#include "boost/mysql/detail/network_algorithms/execute_statement.hpp"
#include "boost/mysql/detail/network_algorithms/close_statement.hpp"
#include "boost/mysql/detail/aux/stringize.hpp"
#include "boost/mysql/detail/auxiliar/stringize.hpp"
#include <boost/beast/core/bind_handler.hpp>
template <typename Stream>

View File

@@ -1,7 +1,7 @@
#ifndef MYSQL_ASIO_IMPL_VALUE_HPP
#define MYSQL_ASIO_IMPL_VALUE_HPP
#include "boost/mysql/detail/aux/container_equals.hpp"
#include "boost/mysql/detail/auxiliar/container_equals.hpp"
namespace boost {
namespace mysql {

View File

@@ -2,7 +2,7 @@
#define MYSQL_ASIO_METADATA_HPP
#include "boost/mysql/detail/protocol/common_messages.hpp"
#include "boost/mysql/detail/aux/bytestr.hpp"
#include "boost/mysql/detail/auxiliar/bytestring.hpp"
#include "boost/mysql/field_type.hpp"
namespace boost {

View File

@@ -5,7 +5,7 @@
#include "boost/mysql/metadata.hpp"
#include "boost/mysql/detail/protocol/common_messages.hpp"
#include "boost/mysql/detail/protocol/channel.hpp"
#include "boost/mysql/detail/aux/bytestr.hpp"
#include "boost/mysql/detail/auxiliar/bytestring.hpp"
#include "boost/mysql/detail/network_algorithms/common.hpp" // deserialize_row_fn
#include <boost/asio/ip/tcp.hpp>
#include <cassert>

View File

@@ -1,8 +1,8 @@
#ifndef MYSQL_ASIO_ROW_HPP
#define MYSQL_ASIO_ROW_HPP
#include "boost/mysql/detail/aux/bytestr.hpp"
#include "boost/mysql/detail/aux/container_equals.hpp"
#include "boost/mysql/detail/auxiliar/bytestring.hpp"
#include "boost/mysql/detail/auxiliar/container_equals.hpp"
#include "boost/mysql/value.hpp"
#include "boost/mysql/metadata.hpp"
#include <algorithm>