Commit 587a40c1 authored by Alexander Barkov's avatar Alexander Barkov

Fixing a warning:

KXYCOL::Kof’ will be initialized after ‘void*& KXYCOL::To_Bkeys’ [-Wreorder]

modified:
  storage/connect/xindex.cpp
parent 2cc5fd06
......@@ -2830,7 +2830,7 @@ int XXROW::FastFind(int nk)
/* KXYCOL public constructor. */
/***********************************************************************/
KXYCOL::KXYCOL(PKXBASE kp) : To_Keys(Keys.Memp),
Kof((CPINT&)Koff.Memp), To_Bkeys(Bkeys.Memp)
To_Bkeys(Bkeys.Memp), Kof((CPINT&)Koff.Memp)
{
Next = NULL;
Previous = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment