Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix msvc build
  • Loading branch information
jef-n committed Sep 28, 2021
1 parent 029b975 commit b843556
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -492,7 +492,7 @@ Fill in histogram defaults if not specified
maximum = PyFloat_AsDouble( a4 );
}

#if defined(SIP_PROTECTED_IS_PUBLIC) or SIP_VERSION >= 0x050000
#if defined(SIP_PROTECTED_IS_PUBLIC) || SIP_VERSION >= 0x050000
sipCpp->initHistogram( *a0, a1, a2, minimum, maximum, *a5, a6, a7 );
#else
sipCpp->sipProtect_initHistogram( *a0, a1, a2, minimum, maximum, *a5, a6, a7 );
Expand Down
2 changes: 1 addition & 1 deletion src/core/raster/qgsrasterinterface.h
Expand Up @@ -540,7 +540,7 @@ class CORE_EXPORT QgsRasterInterface
maximum = PyFloat_AsDouble( a4 );
}

#if defined(SIP_PROTECTED_IS_PUBLIC) or SIP_VERSION >= 0x050000
#if defined(SIP_PROTECTED_IS_PUBLIC) || SIP_VERSION >= 0x050000
sipCpp->initHistogram( *a0, a1, a2, minimum, maximum, *a5, a6, a7 );
#else
sipCpp->sipProtect_initHistogram( *a0, a1, a2, minimum, maximum, *a5, a6, a7 );
Expand Down

0 comments on commit b843556

Please sign in to comment.