MCPcopy Create free account
hub / github.com/pybind/pybind11 / add7

Method add7

tests/test_methods_and_attributes.cpp:53–53  ·  view source on GitHub ↗

passing by value

Source from the content-addressed store, hash-verified

51
52 void add6(int other) { value += other; } // passing by value
53 void add7(int &other) { value += other; } // passing by reference
54 void add8(const int &other) { value += other; } // passing by const reference
55 // NOLINTNEXTLINE(readability-non-const-parameter) Deliberately non-const for testing
56 void add9(int *other) { value += *other; } // passing by pointer

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected