Skip to content

Commit 5fe1ced

Browse files
committed
[???] Use std:: when referencing size_t
1 parent b0c72e9 commit 5fe1ced

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@ static irods::error list_rules(const irods::default_re_ctx&, std::vector<std::st
553553

554554
bp::list function_names = bp::extract<bp::list>(core_namespace["function_names"]);
555555

556-
size_t len_names = bp::extract<std::size_t>(function_names.attr("__len__")());
556+
std::size_t len_names = bp::extract<std::size_t>(function_names.attr("__len__")());
557557
for (std::size_t i = 0; i < len_names; ++i) {
558558
rule_vec.push_back(bp::extract<std::string>(function_names[i]));
559559
std::string tmp = bp::extract<std::string>(function_names[i]);

0 commit comments

Comments
 (0)