From c44f70badcf31bfd9e8e67ce34c65bff1e1522e2 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Thu, 21 Oct 2010 14:08:00 -0400 Subject: Use `x' instead of `t' for the variable in tests. --- tests/Complex.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/Complex.cpp') diff --git a/tests/Complex.cpp b/tests/Complex.cpp index df517b0..3d290c0 100644 --- a/tests/Complex.cpp +++ b/tests/Complex.cpp @@ -24,9 +24,9 @@ #include #include -// y' = -y (y == C*exp(t)) +// y' = -y (y == C*exp(x)) std::complex -f(double t, std::complex y) +f(double x, std::complex y) { return y; } -- cgit v1.2.3