aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/common/i_compactable_lid_space.h
diff options
context:
space:
mode:
Diffstat (limited to 'searchlib/src/vespa/searchlib/common/i_compactable_lid_space.h')
-rw-r--r--searchlib/src/vespa/searchlib/common/i_compactable_lid_space.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/searchlib/src/vespa/searchlib/common/i_compactable_lid_space.h b/searchlib/src/vespa/searchlib/common/i_compactable_lid_space.h
index cea251272dc..80cc8cb7a17 100644
--- a/searchlib/src/vespa/searchlib/common/i_compactable_lid_space.h
+++ b/searchlib/src/vespa/searchlib/common/i_compactable_lid_space.h
@@ -9,19 +9,19 @@ namespace search::common {
/**
* Interface for a component that has a lid space that can be compacted and shrunk.
- */
+ */
struct ICompactableLidSpace {
virtual ~ICompactableLidSpace() = default;
/**
* Compacts the lid space down to the wanted given doc id limit.
* After this, the remaining lid space is a candidate for shrinking (freeing of memory resources).
- */
+ */
virtual void compactLidSpace(uint32_t wantedDocLidLimit) = 0;
/**
* Returns whether this lid space can be shrunk down to the wanted doc id limit.
- */
+ */
virtual bool canShrinkLidSpace() const = 0;
/*