summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2012-05-23 12:24:12 +0200
committerDavid Tardon <dtardon@redhat.com>2012-05-29 07:24:50 +0200
commitab4d7eaef957933c2c7075c37da6bec8adb3853d (patch)
treeabfdec6bcaa9107a7db35fb5509fcd1d474e82c7
parentWaE: 'Intl_TokenID' defined but not used (diff)
downloadcore-ab4d7eaef957933c2c7075c37da6bec8adb3853d.tar.gz
core-ab4d7eaef957933c2c7075c37da6bec8adb3853d.zip
WaE: intialization order
Change-Id: I9acd04a3803f029db326dc193ff98542ffbea648
-rwxr-xr-xconnectivity/source/parse/sqlflex.l4
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;