Skip to content

Commit

Permalink
Back to clang-format 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
williamfgc committed Oct 16, 2018
1 parent 5c2e3e1 commit af08cf5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions bindings/Python/py11glue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ PYBIND11_MODULE(adios2, m)
const std::vector<std::string> &)) &
adios2::py11::IO::DefineAttribute,
pybind11::return_value_policy::reference_internal)
.def("Open", (adios2::py11::Engine(adios2::py11::IO::*)(
.def("Open", (adios2::py11::Engine (adios2::py11::IO::*)(
const std::string &, const int)) &
adios2::py11::IO::Open)
.def("AvailableVariables", &adios2::py11::IO::AvailableVariables)
Expand Down Expand Up @@ -394,31 +394,31 @@ PYBIND11_MODULE(adios2, m)
pybind11::arg("endl") = false)

.def("readstring",
(std::string(adios2::py11::File::*)(const std::string &)) &
(std::string (adios2::py11::File::*)(const std::string &)) &
adios2::py11::File::ReadString,
pybind11::return_value_policy::take_ownership,
pybind11::arg("name"))

.def("readstring", (std::string(adios2::py11::File::*)(
.def("readstring", (std::string (adios2::py11::File::*)(
const std::string &, const size_t)) &
adios2::py11::File::ReadString,
pybind11::return_value_policy::take_ownership)

.def("read",
(pybind11::array(adios2::py11::File::*)(const std::string &)) &
(pybind11::array (adios2::py11::File::*)(const std::string &)) &
adios2::py11::File::Read,
pybind11::return_value_policy::take_ownership,
pybind11::arg("name"))

.def("read", (pybind11::array(adios2::py11::File::*)(
.def("read", (pybind11::array (adios2::py11::File::*)(
const std::string &, const adios2::Dims &,
const adios2::Dims &)) &
adios2::py11::File::Read,
pybind11::return_value_policy::take_ownership,
pybind11::arg("name"), pybind11::arg("start"),
pybind11::arg("count"))

.def("read", (pybind11::array(adios2::py11::File::*)(
.def("read", (pybind11::array (adios2::py11::File::*)(
const std::string &, const adios2::Dims &,
const adios2::Dims &, const size_t, const size_t)) &
adios2::py11::File::Read,
Expand Down

0 comments on commit af08cf5

Please sign in to comment.