summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools/qoffsetstringarray_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/tools/qoffsetstringarray_p.h')
-rw-r--r--src/corelib/tools/qoffsetstringarray_p.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/corelib/tools/qoffsetstringarray_p.h b/src/corelib/tools/qoffsetstringarray_p.h
index ff195965ec..0a7906a3c5 100644
--- a/src/corelib/tools/qoffsetstringarray_p.h
+++ b/src/corelib/tools/qoffsetstringarray_p.h
@@ -66,14 +66,14 @@ template<int Last, int I, int S, int ... Idx>
struct OffsetSequenceHelper<1, Last, I, S, Idx...> : IndexesList<Last + I, Idx..., Last>
{
static const constexpr auto Length = Last + I;
- using Type = typename QConditional<
+ using Type = typename std::conditional<
Last <= std::numeric_limits<quint8>::max(),
quint8,
- typename QConditional<
+ typename std::conditional<
Last <= std::numeric_limits<quint16>::max(),
quint16,
- int>::Type
- >::Type;
+ int>::type
+ >::type;
};
template<int ... Idx>