Skip to content

Commit 106af7e

Browse files
committed
Merge branch 'master' into wip/deprecated-api-removal
2 parents 935bb31 + 31428ab commit 106af7e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

include/limestone/api/configuration.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class configuration {
4343
* @brief set a single data location
4444
* @param data_location the data location
4545
*/
46-
void set_data_location(std::filesystem::path data_location) noexcept;
46+
void set_data_location(const std::filesystem::path& data_location) noexcept;
4747

4848

4949
/**

src/limestone/configuration.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ void configuration::set_recover_max_parallelism(int recover_max_parallelism) noe
2323
recover_max_parallelism_ = recover_max_parallelism;
2424
}
2525

26-
void configuration::set_data_location(std::filesystem::path data_location) noexcept {
26+
void configuration::set_data_location(const std::filesystem::path& data_location) noexcept {
2727
data_location_ = boost::filesystem::path(data_location.native());
2828
}
2929
} // namespace limestone::api

0 commit comments

Comments
 (0)