1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 09:35:28 +00:00

Remove default parameters from the implementation.

This commit is contained in:
cc9cii 2015-03-09 16:24:35 +11:00
parent 6087a18c94
commit f90cdec53b

View File

@ -63,7 +63,7 @@ namespace CSMWorld
};
template <typename ESXRecordT>
Record<ESXRecordT>::Record(State state, const ESXRecordT *base = 0, const ESXRecordT *modified = 0)
Record<ESXRecordT>::Record(State state, const ESXRecordT *base, const ESXRecordT *modified)
{
if(base)
mBase = *base;