diff options
author | David Tardon <dtardon@redhat.com> | 2012-05-23 12:24:12 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-05-29 07:24:50 +0200 |
commit | ab4d7eaef957933c2c7075c37da6bec8adb3853d (patch) | |
tree | abfdec6bcaa9107a7db35fb5509fcd1d474e82c7 | |
parent | f2218fa73cdae020be380f98be8dbf3fdb13f7c1 (diff) |
WaE: intialization order
Change-Id: I9acd04a3803f029db326dc193ff98542ffbea648
-rwxr-xr-x | connectivity/source/parse/sqlflex.l | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/parse/sqlflex.l b/connectivity/source/parse/sqlflex.l index 80bd5573fc37..0bb1bb1b3493 100755 --- a/connectivity/source/parse/sqlflex.l +++ b/connectivity/source/parse/sqlflex.l @@ -708,9 +708,9 @@ using namespace connectivity; static bool IN_SQLyyerror; //------------------------------------------------------------------------------ OSQLScanner::OSQLScanner() - : m_nCurrentPos(0) + : m_pContext(NULL) + , m_nCurrentPos(0) , m_bInternational(sal_False) - , m_pContext(NULL) , m_nRule(0) // 0 is INITIAL { IN_SQLyyerror = false; |