Better clarification about polymorphic wrappers for function objects - std::function
This commit is contained in:
parent
2a90cc6a98
commit
a043b55b69
3 changed files with 48 additions and 13 deletions
|
|
@ -3,10 +3,10 @@ import sys
|
|||
|
||||
t = cpp0x_function_objects.Test()
|
||||
if t.value != 0:
|
||||
raise RuntimeError,"Runtime cpp0x_function_objects failed. t.value should be 0, but is", t.value
|
||||
raise RuntimeError("Runtime cpp0x_function_objects failed. t.value should be 0, but is " + str(t.value))
|
||||
|
||||
t(1,2) # sets value
|
||||
t(1,2) # adds numbers and sets value
|
||||
|
||||
if t.value != 10:
|
||||
raise RuntimeError,"Runtime cpp0x_function_objects failed. t.value not changed - should be 10, but is", t.value
|
||||
if t.value != 3:
|
||||
raise RuntimeError("Runtime cpp0x_function_objects failed. t.value not changed - should be 3, but is " + str(t.value))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue