From b62c1203f578e5d95fce45a79942c15052546dec Mon Sep 17 00:00:00 2001 From: mk kim Date: Mon, 14 Dec 2015 16:00:58 +0900 Subject: [PATCH] Fix typographical error --- example/example1.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/example/example1.cpp b/example/example1.cpp index 2173539a2..2a0038d82 100644 --- a/example/example1.cpp +++ b/example/example1.cpp @@ -35,16 +35,16 @@ public: void operator=(const Example1 &e) { cout << "Assignment operator" << endl; value = e.value; } void operator=(Example1 &&e) { cout << "Move assignment operator" << endl; value = e.value; e.value = 0;} - void add1(Example1 other) { value += other.value; } // passing py value + void add1(Example1 other) { value += other.value; } // passing by value void add2(Example1 &other) { value += other.value; } // passing by reference void add3(const Example1 &other) { value += other.value; } // passing by const reference - void add4(Example1 *other) { value += other->value; } // passing py pointer + void add4(Example1 *other) { value += other->value; } // passing by pointer void add5(const Example1 *other) { value += other->value; } // passing by const pointer - void add6(int other) { value += other; } // passing py value + void add6(int other) { value += other; } // passing by value void add7(int &other) { value += other; } // passing by reference void add8(const int &other) { value += other; } // passing by const reference - void add9(int *other) { value += *other; } // passing py pointer + void add9(int *other) { value += *other; } // passing by pointer void add10(const int *other) { value += *other; } // passing by const pointer Example1 self1() { return *this; } // return by value