Skip to content

Commit

Permalink
Apply clang format
Browse files Browse the repository at this point in the history
  • Loading branch information
gitbuda committed Aug 10, 2024
1 parent b73cc41 commit e92188c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/utils/utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -339,15 +339,15 @@ void PrintValue(std::ostream &os, const mg_duration *duration) {

void PrintValue(std::ostream &os, const mg_point_2d *value) {
os << "POINT({ x:" << mg_point_2d_x(value) << ","
<< " y:" << mg_point_2d_y(value) << ","
<< " srid:" << mg_point_2d_srid(value) << " })";
<< " y:" << mg_point_2d_y(value) << ","
<< " srid:" << mg_point_2d_srid(value) << " })";
}

void PrintValue(std::ostream &os, const mg_point_3d *value) {
os << "POINT({ x:" << mg_point_3d_x(value) << ","
<< " y:" << mg_point_3d_y(value) << ","
<< " z:" << mg_point_3d_z(value) << ","
<< " srid:" << mg_point_3d_srid(value) << " })";
<< " y:" << mg_point_3d_y(value) << ","
<< " z:" << mg_point_3d_z(value) << ","
<< " srid:" << mg_point_3d_srid(value) << " })";
}

void PrintValue(std::ostream &os, const mg_value *value) {
Expand Down

0 comments on commit e92188c

Please sign in to comment.