summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeir Storli <geirstorli@yahoo.no>2019-01-03 13:26:16 +0100
committerGitHub <noreply@github.com>2019-01-03 13:26:16 +0100
commit0c9c6638452df2d3de0e32b3837e8bbd82740edd (patch)
tree41ca63c3f3f1168acebf1f03b606c408e96c4c80
parent6af0d79479da66c18089ad0ae07c6dea44f88ee8 (diff)
parent29afa9f0ef5892657cb94bdebb7ccb4963576493 (diff)
Merge pull request #7996 from vespa-engine/balder/update-comments-and-copyright
Create class comment and correct copyright year.
-rw-r--r--searchlib/src/vespa/searchlib/attribute/singleboolattribute.cpp2
-rw-r--r--searchlib/src/vespa/searchlib/attribute/singleboolattribute.h6
2 files changed, 6 insertions, 2 deletions
diff --git a/searchlib/src/vespa/searchlib/attribute/singleboolattribute.cpp b/searchlib/src/vespa/searchlib/attribute/singleboolattribute.cpp
index 1fa322b712e..e4342f08f09 100644
--- a/searchlib/src/vespa/searchlib/attribute/singleboolattribute.cpp
+++ b/searchlib/src/vespa/searchlib/attribute/singleboolattribute.cpp
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include "singleboolattribute.h"
#include "attributevector.hpp"
diff --git a/searchlib/src/vespa/searchlib/attribute/singleboolattribute.h b/searchlib/src/vespa/searchlib/attribute/singleboolattribute.h
index bb819e4bd0e..c10940574e6 100644
--- a/searchlib/src/vespa/searchlib/attribute/singleboolattribute.h
+++ b/searchlib/src/vespa/searchlib/attribute/singleboolattribute.h
@@ -1,4 +1,4 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once
@@ -8,6 +8,10 @@
namespace search {
+/**
+ * Attributevector for boolean field values occupying a bit per document
+ * and backed by a growable rcu bit vector.
+ */
class SingleBoolAttribute : public IntegerAttributeTemplate<int8_t>
{
public: