summaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/common/docstamp.h
diff options
context:
space:
mode:
Diffstat (limited to 'searchlib/src/vespa/searchlib/common/docstamp.h')
-rw-r--r--searchlib/src/vespa/searchlib/common/docstamp.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/searchlib/src/vespa/searchlib/common/docstamp.h b/searchlib/src/vespa/searchlib/common/docstamp.h
deleted file mode 100644
index d0515e7d331..00000000000
--- a/searchlib/src/vespa/searchlib/common/docstamp.h
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-
-#pragma once
-
-namespace search {
-
-// since everything is real-time, the docstamp does no longer change
-// as before. The value 0 still means invalid , and the
-// value 42 was selected randomly to reflect a valid value. Defined
-// here for a single source of truth.
-
-struct DocStamp {
- static uint32_t good() { return 42; }
- static uint32_t bad() { return 0; }
-};
-
-} // namespace search
-