Browse Source

fixed a warning about a spurious semicolon

Former-commit-id: 5f4ed7c902
tempestpy_adaptions
sjunges 8 years ago
committed by Matthias Volk
parent
commit
305c2b155c
  1. 4
      stormpy/src/common.h

4
stormpy/src/common.h

@ -22,8 +22,8 @@ namespace py = pybind11;
#define PY_RDIV "__rdiv__"
#endif
PYBIND11_DECLARE_HOLDER_TYPE(T, std::shared_ptr<T>);
PYBIND11_DECLARE_HOLDER_TYPE(T, std::shared_ptr<T const>);
PYBIND11_DECLARE_HOLDER_TYPE(T, std::shared_ptr<T>)
PYBIND11_DECLARE_HOLDER_TYPE(T, std::shared_ptr<T const>)
namespace pybind11 {
namespace detail {

Loading…
Cancel
Save