Skip to content

Commit be5fa3e

Browse files
committed
Fix function name
1 parent 9231eb7 commit be5fa3e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

include/viennals/lsPointData.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ class PointData {
102102
}
103103

104104
/// insert or replace vector data array
105-
void insertNextVectorData(const VectorDataType &vectors,
106-
std::string label = "Vectors") {
105+
void insertReplaceVectorData(const VectorDataType &vectors,
106+
std::string label = "Vectors") {
107107
if (int i = getVectorDataIndex(label); i != -1) {
108108
vectorData[i] = vectors;
109109
} else {
@@ -112,8 +112,8 @@ class PointData {
112112
}
113113

114114
/// insert new vector data array
115-
void insertNextVectorData(VectorDataType &&vectors,
116-
std::string label = "Vectors") {
115+
void insertReplaceVectorData(VectorDataType &&vectors,
116+
std::string label = "Vectors") {
117117
if (int i = getVectorDataIndex(label); i != -1) {
118118
vectorData[i] = std::move(vectors);
119119
} else {

0 commit comments

Comments
 (0)