We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 191f2e1 commit e9283c9Copy full SHA for e9283c9
include/memcached/engine_testapp.h
@@ -119,7 +119,7 @@ struct test_harness {
119
* Store the specified pointer in the specified cookie
120
*/
121
virtual void store_engine_specific(const CookieIface* cookie,
122
- CookieIface* engine_data) = 0;
+ void* engine_data) = 0;
123
124
/**
125
* Get the number of references for the specified cookie
programs/engine_testapp/engine_testapp.cc
@@ -193,7 +193,7 @@ class MockTestHarness : public test_harness {
193
}
194
195
void store_engine_specific(const CookieIface* cookie,
196
- CookieIface* engine_data) override {
+ void* engine_data) override {
197
get_mock_server_api()->cookie->store_engine_specific(cookie,
198
engine_data);
199
0 commit comments