OpenDDLExport: Reduce scope of a variable

pull/1498/head
Turo Lamminen 2017-11-15 12:15:53 +02:00
parent ef91211231
commit fc59f190ae
1 changed files with 1 additions and 2 deletions

View File

@ -359,11 +359,10 @@ bool OpenDDLExport::writeValueArray( DataArrayList *al, std::string &statement )
} }
DataArrayList *nextDataArrayList = al ; DataArrayList *nextDataArrayList = al ;
Value *nextValue( nextDataArrayList->m_dataList );
while (ddl_nullptr != nextDataArrayList) { while (ddl_nullptr != nextDataArrayList) {
if (ddl_nullptr != nextDataArrayList) { if (ddl_nullptr != nextDataArrayList) {
statement += "{ "; statement += "{ ";
nextValue = nextDataArrayList->m_dataList; Value *nextValue( nextDataArrayList->m_dataList );
size_t idx( 0 ); size_t idx( 0 );
while (ddl_nullptr != nextValue) { while (ddl_nullptr != nextValue) {
if (idx > 0) { if (idx > 0) {