mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-27 02:55:44 +08:00
Fixed MinGW error by moving method implementation of class template into cpp file.
This commit is contained in:
committed by
Klaus Basan
parent
df563d5b29
commit
42aa521289
@@ -346,6 +346,12 @@ namespace BlackMisc
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template<class OBJ, class CONTAINER>
|
||||||
|
void ITimestampObjectList<OBJ, CONTAINER>::setSortHint(HintTimestampSort hint)
|
||||||
|
{
|
||||||
|
m_tsSortHint = hint;
|
||||||
|
}
|
||||||
|
|
||||||
template<class OBJ, class CONTAINER>
|
template<class OBJ, class CONTAINER>
|
||||||
MillisecondsMinMaxMean ITimestampObjectList<OBJ, CONTAINER>::getTimestampDifferenceMinMaxMean() const
|
MillisecondsMinMaxMean ITimestampObjectList<OBJ, CONTAINER>::getTimestampDifferenceMinMaxMean() const
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -147,7 +147,7 @@ namespace BlackMisc
|
|||||||
void addMsecs(qint64 msToAdd);
|
void addMsecs(qint64 msToAdd);
|
||||||
|
|
||||||
//! Set the hint
|
//! Set the hint
|
||||||
void setSortHint(HintTimestampSort hint) { m_tsSortHint = hint; }
|
void setSortHint(HintTimestampSort hint);
|
||||||
|
|
||||||
//! Difference of timestamp values
|
//! Difference of timestamp values
|
||||||
//! \cond timestamp list has to be sorted to get meaningful values
|
//! \cond timestamp list has to be sorted to get meaningful values
|
||||||
|
|||||||
Reference in New Issue
Block a user