Skip to content

Commit 6919c88

Browse files
committed
Add unreferenced parameter macro use to outside_tests.cpp
1 parent da68d85 commit 6919c88

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Release/tests/functional/http/client/outside_tests.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,11 +213,14 @@ TEST_FIXTURE(uri_address, outside_ssl_json)
213213
{
214214
#if defined(_MSC_VER) && !defined(__cplusplus_winrt)
215215
if (e.error_code().value() != API_QUERY_DATA_AVAILABLE || i == 3)
216-
#endif
217216
{
218217
// If we didn't get a "connection broken" error (or we are on the last retry), rethrow it
219218
throw;
220219
}
220+
#else
221+
CASABLANCA_UNREFERENCED_PARAMETER(e);
222+
throw;
223+
#endif
221224
os_utilities::sleep(1000);
222225
}
223226
}

0 commit comments

Comments
 (0)