diff options
| author | Tobias Markmann <tm@ayena.de> | 2014-10-19 20:22:58 (GMT) | 
|---|---|---|
| committer | Tobias Markmann <tm@ayena.de> | 2014-10-20 13:49:33 (GMT) | 
| commit | 6b22dfcf59474dd016a0355a3102a1dd3692d92c (patch) | |
| tree | 2b1fd33be433a91e81fee84fdc2bf1b52575d934 /3rdParty/Boost/src/boost/asio/read_at.hpp | |
| parent | 38b0cb785fea8eae5e48fae56440695fdfd10ee1 (diff) | |
| download | swift-contrib-6b22dfcf59474dd016a0355a3102a1dd3692d92c.zip swift-contrib-6b22dfcf59474dd016a0355a3102a1dd3692d92c.tar.bz2 | |
Update Boost in 3rdParty to version 1.56.0.
This updates Boost in our 3rdParty directory to version 1.56.0.
Updated our update.sh script to stop on error.
Changed error reporting in SwiftTools/CrashReporter.cpp to SWIFT_LOG due to
missing include of <iostream> with newer Boost.
Change-Id: I4b35c77de951333979a524097f35f5f83d325edc
Diffstat (limited to '3rdParty/Boost/src/boost/asio/read_at.hpp')
| -rw-r--r-- | 3rdParty/Boost/src/boost/asio/read_at.hpp | 49 | 
1 files changed, 29 insertions, 20 deletions
| diff --git a/3rdParty/Boost/src/boost/asio/read_at.hpp b/3rdParty/Boost/src/boost/asio/read_at.hpp index 7eb30e0..02acbee 100644 --- a/3rdParty/Boost/src/boost/asio/read_at.hpp +++ b/3rdParty/Boost/src/boost/asio/read_at.hpp @@ -3,5 +3,5 @@  // ~~~~~~~~~~~  // -// Copyright (c) 2003-2012 Christopher M. Kohlhoff (chris at kohlhoff dot com) +// Copyright (c) 2003-2014 Christopher M. Kohlhoff (chris at kohlhoff dot com)  //  // Distributed under the Boost Software License, Version 1.0. (See accompanying @@ -18,6 +18,7 @@  #include <boost/asio/detail/config.hpp>  #include <cstddef> -#include <boost/cstdint.hpp> +#include <boost/asio/async_result.hpp>  #include <boost/asio/basic_streambuf_fwd.hpp> +#include <boost/asio/detail/cstdint.hpp>  #include <boost/asio/error.hpp> @@ -77,5 +78,5 @@ namespace asio {  template <typename SyncRandomAccessReadDevice, typename MutableBufferSequence>  std::size_t read_at(SyncRandomAccessReadDevice& d, -    boost::uint64_t offset, const MutableBufferSequence& buffers); +    uint64_t offset, const MutableBufferSequence& buffers);  /// Attempt to read a certain amount of data at the specified offset before @@ -122,5 +123,5 @@ std::size_t read_at(SyncRandomAccessReadDevice& d,  template <typename SyncRandomAccessReadDevice, typename MutableBufferSequence>  std::size_t read_at(SyncRandomAccessReadDevice& d, -    boost::uint64_t offset, const MutableBufferSequence& buffers, +    uint64_t offset, const MutableBufferSequence& buffers,      boost::system::error_code& ec); @@ -178,5 +179,5 @@ template <typename SyncRandomAccessReadDevice, typename MutableBufferSequence,      typename CompletionCondition>  std::size_t read_at(SyncRandomAccessReadDevice& d, -    boost::uint64_t offset, const MutableBufferSequence& buffers, +    uint64_t offset, const MutableBufferSequence& buffers,      CompletionCondition completion_condition); @@ -227,8 +228,8 @@ template <typename SyncRandomAccessReadDevice, typename MutableBufferSequence,      typename CompletionCondition>  std::size_t read_at(SyncRandomAccessReadDevice& d, -    boost::uint64_t offset, const MutableBufferSequence& buffers, +    uint64_t offset, const MutableBufferSequence& buffers,      CompletionCondition completion_condition, boost::system::error_code& ec); -#if !defined(BOOST_NO_IOSTREAM) +#if !defined(BOOST_ASIO_NO_IOSTREAM)  /// Attempt to read a certain amount of data at the specified offset before @@ -262,5 +263,5 @@ std::size_t read_at(SyncRandomAccessReadDevice& d,  template <typename SyncRandomAccessReadDevice, typename Allocator>  std::size_t read_at(SyncRandomAccessReadDevice& d, -    boost::uint64_t offset, basic_streambuf<Allocator>& b); +    uint64_t offset, basic_streambuf<Allocator>& b);  /// Attempt to read a certain amount of data at the specified offset before @@ -294,5 +295,5 @@ std::size_t read_at(SyncRandomAccessReadDevice& d,  template <typename SyncRandomAccessReadDevice, typename Allocator>  std::size_t read_at(SyncRandomAccessReadDevice& d, -    boost::uint64_t offset, basic_streambuf<Allocator>& b, +    uint64_t offset, basic_streambuf<Allocator>& b,      boost::system::error_code& ec); @@ -337,5 +338,5 @@ template <typename SyncRandomAccessReadDevice, typename Allocator,      typename CompletionCondition>  std::size_t read_at(SyncRandomAccessReadDevice& d, -    boost::uint64_t offset, basic_streambuf<Allocator>& b, +    uint64_t offset, basic_streambuf<Allocator>& b,      CompletionCondition completion_condition); @@ -381,8 +382,8 @@ template <typename SyncRandomAccessReadDevice, typename Allocator,      typename CompletionCondition>  std::size_t read_at(SyncRandomAccessReadDevice& d, -    boost::uint64_t offset, basic_streambuf<Allocator>& b, +    uint64_t offset, basic_streambuf<Allocator>& b,      CompletionCondition completion_condition, boost::system::error_code& ec); -#endif // !defined(BOOST_NO_IOSTREAM) +#endif // !defined(BOOST_ASIO_NO_IOSTREAM)  /*@}*/ @@ -456,5 +457,7 @@ std::size_t read_at(SyncRandomAccessReadDevice& d,  template <typename AsyncRandomAccessReadDevice, typename MutableBufferSequence,      typename ReadHandler> -void async_read_at(AsyncRandomAccessReadDevice& d, boost::uint64_t offset, +BOOST_ASIO_INITFN_RESULT_TYPE(ReadHandler, +    void (boost::system::error_code, std::size_t)) +async_read_at(AsyncRandomAccessReadDevice& d, uint64_t offset,      const MutableBufferSequence& buffers,      BOOST_ASIO_MOVE_ARG(ReadHandler) handler); @@ -527,10 +530,12 @@ void async_read_at(AsyncRandomAccessReadDevice& d, boost::uint64_t offset,  template <typename AsyncRandomAccessReadDevice, typename MutableBufferSequence,      typename CompletionCondition, typename ReadHandler> -void async_read_at(AsyncRandomAccessReadDevice& d, -    boost::uint64_t offset, const MutableBufferSequence& buffers, +BOOST_ASIO_INITFN_RESULT_TYPE(ReadHandler, +    void (boost::system::error_code, std::size_t)) +async_read_at(AsyncRandomAccessReadDevice& d, +    uint64_t offset, const MutableBufferSequence& buffers,      CompletionCondition completion_condition,      BOOST_ASIO_MOVE_ARG(ReadHandler) handler); -#if !defined(BOOST_NO_IOSTREAM) +#if !defined(BOOST_ASIO_NO_IOSTREAM)  /// Start an asynchronous operation to read a certain amount of data at the @@ -581,5 +586,7 @@ void async_read_at(AsyncRandomAccessReadDevice& d,  template <typename AsyncRandomAccessReadDevice, typename Allocator,      typename ReadHandler> -void async_read_at(AsyncRandomAccessReadDevice& d, boost::uint64_t offset, +BOOST_ASIO_INITFN_RESULT_TYPE(ReadHandler, +    void (boost::system::error_code, std::size_t)) +async_read_at(AsyncRandomAccessReadDevice& d, uint64_t offset,      basic_streambuf<Allocator>& b, BOOST_ASIO_MOVE_ARG(ReadHandler) handler); @@ -639,10 +646,12 @@ void async_read_at(AsyncRandomAccessReadDevice& d, boost::uint64_t offset,  template <typename AsyncRandomAccessReadDevice, typename Allocator,      typename CompletionCondition, typename ReadHandler> -void async_read_at(AsyncRandomAccessReadDevice& d, -    boost::uint64_t offset, basic_streambuf<Allocator>& b, +BOOST_ASIO_INITFN_RESULT_TYPE(ReadHandler, +    void (boost::system::error_code, std::size_t)) +async_read_at(AsyncRandomAccessReadDevice& d, +    uint64_t offset, basic_streambuf<Allocator>& b,      CompletionCondition completion_condition,      BOOST_ASIO_MOVE_ARG(ReadHandler) handler); -#endif // !defined(BOOST_NO_IOSTREAM) +#endif // !defined(BOOST_ASIO_NO_IOSTREAM)  /*@}*/ | 
 Swift
 Swift