commit 3e293894f4f93d450ecaf50f451604d268323bd1
parent f9ed4288e54c19a735a6c6131166034270609736
Author: d.levin256@gmail.com <d.levin256@gmail.com>
Date: Fri, 1 Jul 2016 16:28:56 +0300
Update README.md
Diffstat:
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
@@ -1,6 +1,6 @@
# KFR
-[](https://travis-ci.org/kfrlib/kfr)
+[](https://travis-ci.org/kfrlib/kfr)
KFR is an open source C++ math framework with focus on DSP.
diff --git a/tests/vec_test.cpp b/tests/vec_test.cpp
@@ -49,7 +49,8 @@ TEST(vec_make_vector)
{
const signed char ch = -1;
CHECK(make_vector(1, 2, ch) == vec<i32, 3>{ 1, 2, -1 });
- CHECK(make_vector(1, 2, -100ll) == vec<i64, 3>{ 1, 2, -100 });
+ const i64 v = -100;
+ CHECK(make_vector(1, 2, v) == vec<i64, 3>{ 1, 2, -100 });
CHECK(make_vector<i64>(1, 2, ch) == vec<i64, 3>{ 1, 2, -1 });
CHECK(make_vector<f32>(1, 2, ch) == vec<f32, 3>{ 1, 2, -1 });