Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit adb9e60

Browse files
committedDec 4, 2023
Fixing warnings about struct/class incompatibility
1 parent 3502c28 commit adb9e60

5 files changed

+8
-6
lines changed
 

‎include/abstract_data_store.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
namespace diskann
1414
{
1515

16-
template <typename data_t> struct AbstractScratch;
16+
template <typename data_t> class AbstractScratch;
1717

1818
template <typename data_t> class AbstractDataStore
1919
{

‎include/abstract_scratch.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
namespace diskann
33
{
44

5-
template <typename data_t> struct PQScratch;
5+
template <typename data_t> class PQScratch;
66

77
// By somewhat more than a coincidence, it seems that both InMemQueryScratch
88
// and SSDQueryScratch have the aligned query and PQScratch objects. So we
99
// can put them in a neat hierarchy and keep PQScratch as a standalone class.
10-
template <typename data_t> struct AbstractScratch
10+
template <typename data_t> class AbstractScratch
1111
{
12+
public:
1213
AbstractScratch() = default;
1314
// This class does not take any responsibilty for memory management of
1415
// its members. It is the responsibility of the derived classes to do so.

‎include/pq_scratch.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
namespace diskann
77
{
88

9-
template <typename T> struct PQScratch
9+
template <typename T> class PQScratch
1010
{
11+
public:
1112
float *aligned_pqtable_dist_scratch = nullptr; // MUST BE AT LEAST [256 * NCHUNKS]
1213
float *aligned_dist_scratch = nullptr; // MUST BE AT LEAST diskann MAX_DEGREE
1314
uint8_t *aligned_pq_coord_scratch = nullptr; // AT LEAST [N_CHUNKS * MAX_DEGREE]

‎include/quantized_distance.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
namespace diskann
88
{
9-
template <typename data_t> struct PQScratch;
9+
template <typename data_t> class PQScratch;
1010

1111
template <typename data_t> class QuantizedDistance
1212
{

‎include/scratch.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
namespace diskann
2121
{
22-
template <typename T> struct PQScratch;
22+
template <typename T> class PQScratch;
2323

2424
//
2525
// AbstractScratch space for in-memory index based search

0 commit comments

Comments
 (0)
Please sign in to comment.