Skip to content

Commit

Permalink
rev: insert newlines to prevent git issues
Browse files Browse the repository at this point in the history
changes per #522 (comment)
  • Loading branch information
program-- authored and mattw-nws committed Jul 18, 2023
1 parent ddffb9a commit 395cb22
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion include/geopackage/GeoPackage.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,4 @@ std::shared_ptr<geojson::FeatureCollection> read(
);

} // namespace geopackage
#endif // NGEN_GEOPACKAGE_H
#endif // NGEN_GEOPACKAGE_H
2 changes: 1 addition & 1 deletion include/geopackage/SQLite.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -270,4 +270,4 @@ class sqlite

} // namespace geopackage

#endif // NGEN_GEOPACKAGE_SQLITE_H
#endif // NGEN_GEOPACKAGE_SQLITE_H
2 changes: 1 addition & 1 deletion src/geopackage/feature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,4 @@ geojson::Feature geopackage::build_feature(
{}
));
}
}
}
2 changes: 1 addition & 1 deletion src/geopackage/geometry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,4 @@ geojson::geometry geopackage::build_geometry(
} else {
return geojson::geometry{};
}
}
}
2 changes: 1 addition & 1 deletion src/geopackage/read.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,4 @@ std::shared_ptr<geojson::FeatureCollection> geopackage::read(

const auto fc = geojson::FeatureCollection(std::move(features), {min_x, min_y, max_x, max_y});
return std::make_shared<geojson::FeatureCollection>(fc);
}
}
2 changes: 1 addition & 1 deletion src/geopackage/sqlite/database.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,4 @@ inline sqlite_iter sqlite::query(const std::string& statement, T const&... param

this->stmt = stmt_t(stmt, sqlite_deleter{});
return sqlite_iter(this->stmt);
}
}
2 changes: 1 addition & 1 deletion src/geopackage/sqlite/iterator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,4 +132,4 @@ std::string sqlite_iter::get<std::string>(int col) const
int size = sqlite3_column_bytes(this->ptr(), col);
const unsigned char* ptr = sqlite3_column_text(this->ptr(), col);
return std::string(ptr, ptr+size);
}
}
2 changes: 1 addition & 1 deletion test/geopackage/SQLite_Test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,4 +108,4 @@ TEST_F(SQLite_Test, sqlite_query_test)
ASSERT_NO_THROW(iter.next());
EXPECT_TRUE(iter.done());
EXPECT_EQ(iter.current_row(), 1);
}
}

0 comments on commit 395cb22

Please sign in to comment.