summaryrefslogtreecommitdiff
path: root/tests/test_rvalue_ref.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_rvalue_ref.cc')
-rw-r--r--tests/test_rvalue_ref.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/test_rvalue_ref.cc b/tests/test_rvalue_ref.cc
index 4e1666b..344a856 100644
--- a/tests/test_rvalue_ref.cc
+++ b/tests/test_rvalue_ref.cc
@@ -18,10 +18,12 @@ struct foo
struct A
{
- void foo(MoveableStruct &&) { result_stream << "A::foo(MoveableStruct&&)"; }
+ void foo(MoveableStruct&&) { result_stream << "A::foo(MoveableStruct&&)"; }
};
-void boo(MoveableStruct &&) {
+void
+boo(MoveableStruct&&)
+{
result_stream << "boo(MoveableStruct&&)";
}
@@ -52,7 +54,7 @@ test_slot()
void
test_mem_fun()
{
- sigc::slot<void(A &, MoveableStruct &&)> slot;
+ sigc::slot<void(A&, MoveableStruct &&)> slot;
A a;
slot = sigc::mem_fun(&A::foo);
MoveableStruct x;