Skip to content

Commit 22ce708

Browse files
committed
Fix build warning
1 parent 6a76502 commit 22ce708

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/qgsfield.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ QString QgsField::displayString( const QVariant &v ) const
246246
}
247247
// Other numeric types than doubles
248248
else if ( isNumeric() &&
249-
! QLocale().numberOptions() & QLocale::NumberOption::OmitGroupSeparator )
249+
!( QLocale().numberOptions() & QLocale::NumberOption::OmitGroupSeparator ) )
250250
{
251251
bool ok;
252252
qlonglong converted( v.toLongLong( &ok ) );

0 commit comments

Comments
 (0)