MCPcopy Create free account
hub / github.com/ThePhD/sol2 / int_entry

Class int_entry

tests/run_time/source/lua_value.cpp:35–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

33#include <variant>
34
35struct int_entry {
36 int value;
37
38 int_entry() : value(0) {
39 }
40
41 int_entry(int v) : value(v) {
42 }
43
44 bool operator==(const int_entry& e) const {
45 return value == e.value;
46 }
47};
48
49std::mutex lua_value_construct_require_mutex;
50

Callers 1

lua_value.cppFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected