Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Fix clang-tidy errors #234

Merged
merged 3 commits into from
Jan 12, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix
sarlinpe committed Jan 12, 2024
commit f3d8d59c0ec0ed7ac7bada0c7f3d13e2d809eebe
2 changes: 1 addition & 1 deletion pycolmap/pipeline/extract_features.h
Original file line number Diff line number Diff line change
@@ -33,7 +33,7 @@ void ExtractFeatures(const py::object& database_path_,
const std::string& camera_model,
ImageReaderOptions reader_options,
SiftExtractionOptions sift_options,
const Device& device) {
const Device device) {
std::string database_path = py::str(database_path_).cast<std::string>();
THROW_CHECK_MSG(!ExistsFile(database_path),
database_path + " already exists.");