From db0895af295cc2c22165c68b3fc2bbac1e38c3a4 Mon Sep 17 00:00:00 2001 From: cxl Date: Thu, 12 Mar 2015 09:47:30 +0000 Subject: [PATCH] Core:: Tuple::Set git-svn-id: svn://ultimatepp.org/upp/trunk@8258 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/Core/Tuple.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uppsrc/Core/Tuple.h b/uppsrc/Core/Tuple.h index f2c478c6d..a2bcdbed7 100644 --- a/uppsrc/Core/Tuple.h +++ b/uppsrc/Core/Tuple.h @@ -128,7 +128,7 @@ struct Tuple4 { Tuple4& SetA(const A& a_) { a = a_; return *this; } Tuple4& SetB(const B& b_) { b = b_; return *this; } Tuple4& SetC(const C& c_) { c = c_; return *this; } - Tuple4& SetD(const D& c_) { d = d_; return *this; } + Tuple4& SetD(const D& d_) { d = d_; return *this; } Tuple4& Set(const A& a_, const B& b_, const C& c_, const D& d_) { a = a_; b = b_; c = c_; d = d_; return *this; }