Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
Committed-by: xiaolei.zl from Dev container
  • Loading branch information
zhanglei1949 committed Oct 15, 2024
1 parent c9bdcbb commit 013aa4e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions flex/tests/hqps/context_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ int main() {

col1->resize(limit);
for (size_t i = 0; i < limit; ++i) {
col1->set_value(i, (int32_t) (i));
col1->set_value(i, (int32_t)(i));
}
{
int32_t res = 0;
Expand Down Expand Up @@ -205,7 +205,7 @@ int main() {
col1->resize(limit);
col2->resize(limit);
for (size_t i = 0; i < limit; ++i) {
col1->set_value(i, (int32_t) (i));
col1->set_value(i, (int32_t)(i));
col2->set_value(i, (int64_t) i);
}
{
Expand Down Expand Up @@ -298,10 +298,10 @@ int main() {
col1->resize(limit);
col2->resize(limit);
for (size_t i = 0; i < limit; i += 2) {
col1->set_value(i, (int32_t) (i));
col1->set_value(i, (int32_t)(i));
}
for (size_t i = 1; i < limit; i += 2) {
col2->set_value(i, (int32_t) (i));
col2->set_value(i, (int32_t)(i));
}
// test two label vertex set prop getter.
auto ref_col1 = std::make_shared<gs::TypedRefColumn<int32_t>>(*col1);
Expand Down

0 comments on commit 013aa4e

Please sign in to comment.