MCPcopy Create free account
hub / github.com/anjo76/angelscript / Value

Class Value

sdk/tests/test_feature/source/test_arrayobject.cpp:304–312  ·  view source on GitHub ↗

--------------------------------------------------- Reported by dxj19831029

Source from the content-addressed store, hash-verified

302//---------------------------------------------------
303// Reported by dxj19831029
304class Value {
305public:
306 Value() {
307 a = 4;
308 }
309 // Add copy constructor to work on gcc 64bit
310 Value(const Value &v) : a(v.a) {}
311 int a;
312};
313static Value v_static;
314class A {
315public:

Callers 1

TestConditionFunction · 0.70

Calls

no outgoing calls

Tested by 1

TestConditionFunction · 0.56