mirror of
https://github.com/pocoproject/poco.git
synced 2025-02-23 07:12:45 +01:00
Data/TypeHandler: use std::size_t instead of size_t for template parameters.
This commit is contained in:
parent
cc09e53b6a
commit
bd19e0a0fe
@ -2109,7 +2109,7 @@ private:
|
|||||||
|
|
||||||
#if __cplusplus >= 201103L
|
#if __cplusplus >= 201103L
|
||||||
|
|
||||||
template<size_t N>
|
template<std::size_t N>
|
||||||
struct TupleBind
|
struct TupleBind
|
||||||
/// Helper for specialization of type handler for std::tuple
|
/// Helper for specialization of type handler for std::tuple
|
||||||
{
|
{
|
||||||
@ -2130,7 +2130,7 @@ struct TupleBind
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
template<size_t N>
|
template<std::size_t N>
|
||||||
struct TupleSize
|
struct TupleSize
|
||||||
/// Helper for specialization of type handler for std::tuple
|
/// Helper for specialization of type handler for std::tuple
|
||||||
{
|
{
|
||||||
@ -2150,7 +2150,7 @@ struct TupleSize
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
template<size_t N>
|
template<std::size_t N>
|
||||||
struct TupleExtract
|
struct TupleExtract
|
||||||
/// Helper for specialization of type handler for std::tuple
|
/// Helper for specialization of type handler for std::tuple
|
||||||
{
|
{
|
||||||
@ -2171,7 +2171,7 @@ struct TupleExtract
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
template<size_t N>
|
template<std::size_t N>
|
||||||
struct TuplePrepare
|
struct TuplePrepare
|
||||||
/// Helper for specialization of type handler for std::tuple
|
/// Helper for specialization of type handler for std::tuple
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user