Commented out makeCacheKey() declaration (not defined or references anywhere)

This commit is contained in:
Ivan Skytte Jørgensen
2016-02-26 10:58:43 +01:00
parent b2160d18ab
commit 6b3b22c021

52
Msg5.h

@ -20,32 +20,32 @@ extern int32_t g_isDumpingRdbFromMain;
// hitting disk.
//key_t makeCacheKey ( key_t startKey ,
// key_t endKey ,
void makeCacheKey ( char *startKey ,
char *endKey ,
bool includeTree ,
int32_t minRecSizes ,
int32_t startFileNum ,
int32_t numFiles ,
char *cacheKeyPtr ,
char keySize ) ;
inline key_t makeCacheKey ( key_t startKey ,
key_t endKey ,
bool includeTree ,
int32_t minRecSizes ,
int32_t startFileNum ,
int32_t numFiles ) {
key_t k;
makeCacheKey ( (char *)&startKey ,
(char *)&endKey ,
includeTree ,
minRecSizes ,
startFileNum ,
numFiles ,
(char *)&k ,
sizeof(key_t) );
return k;
}
// void makeCacheKey ( char *startKey ,
// char *endKey ,
// bool includeTree ,
// int32_t minRecSizes ,
// int32_t startFileNum ,
// int32_t numFiles ,
// char *cacheKeyPtr ,
// char keySize ) ;
//
// inline key_t makeCacheKey ( key_t startKey ,
// key_t endKey ,
// bool includeTree ,
// int32_t minRecSizes ,
// int32_t startFileNum ,
// int32_t numFiles ) {
// key_t k;
// makeCacheKey ( (char *)&startKey ,
// (char *)&endKey ,
// includeTree ,
// minRecSizes ,
// startFileNum ,
// numFiles ,
// (char *)&k ,
// sizeof(key_t) );
// return k;
// }
class Msg2;