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

Function m3

tests/test_constants_and_functions.cpp:68–68  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

66 int m1(int x) noexcept { return x - 1; }
67 int m2(int x) const noexcept { return x - 2; }
68 int m3(int x) noexcept(true) { return x - 3; }
69 int m4(int x) const noexcept(true) { return x - 4; }
70 int m5(int x) noexcept(false) { return x - 5; }
71 int m6(int x) const noexcept(false) { return x - 6; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected