summaryrefslogtreecommitdiff
path: root/test/span.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/span.cpp')
-rw-r--r--test/span.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/span.cpp b/test/span.cpp
index abf3a5d6..4b9f3279 100644
--- a/test/span.cpp
+++ b/test/span.cpp
@@ -2,7 +2,7 @@
/*
* Copyright (C) 2020, Google Inc.
*
- * span.cpp - Span tests
+ * Span tests
*/
/*
@@ -143,9 +143,9 @@ protected:
Span<const int>{ v };
/* Span<float>{ v }; */
- Span<const int>{ v };
- /* Span<int>{ v }; */
- /* Span<const float>{ v }; */
+ Span<const int>{ cv };
+ /* Span<int>{ cv }; */
+ /* Span<const float>{ cv }; */
Span<int> dynamicSpan{ i };
Span<int>{ dynamicSpan };