mirror of
https://github.com/JakubMelka/PDF4QT.git
synced 2025-06-05 21:59:17 +02:00
Color setting operators
This commit is contained in:
@ -49,9 +49,9 @@ public:
|
||||
|
||||
}
|
||||
|
||||
template<typename... Arguments, typename std::enable_if<sizeof...(Arguments) < FlatSize, int>::type = 0>
|
||||
template<typename... Arguments, typename std::enable_if<sizeof...(Arguments) <= FlatSize, int>::type = 0>
|
||||
explicit inline PDFFlatArray(Arguments... arguments) :
|
||||
m_flatBlock(arguments...),
|
||||
m_flatBlock({ arguments... }),
|
||||
m_flatBlockEndIterator(std::next(m_flatBlock.begin(), sizeof...(Arguments))),
|
||||
m_variableBlock()
|
||||
{
|
||||
|
Reference in New Issue
Block a user