Merge pull request #1714 from attilaolah/patch-1

fix: compilation with -Wunused-variable
This commit is contained in:
Christoph Hasse 2021-06-21 20:24:52 +02:00 committed by GitHub
commit 653c5696d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,6 +32,7 @@ check_cxx_source_compiles( "
int main() {
char buff[100];
const char* c = strerror_r(0,buff,100);
(void)c; // ignore unuse-variable
return 0;
}" EXV_STRERROR_R_CHAR_P )