Silence compiler warning about unused httpClient when explicitly building without update checks

This commit is contained in:
Sebastian Messmer 2020-06-30 00:09:31 -07:00
parent 7097adb8dc
commit 873681a3ef

View File

@ -101,6 +101,7 @@ namespace cryfs_cli {
} }
#else #else
# warning Update checks are disabled. The resulting executable will not go online to check for newer versions or known security vulnerabilities. # warning Update checks are disabled. The resulting executable will not go online to check for newer versions or known security vulnerabilities.
UNUSED(httpClient);
#endif #endif
cout << endl; cout << endl;
} }