Skip to content

Commit 26ab13e

Browse files
committed
Update valarray_notes.cpp
1 parent 311f60e commit 26ab13e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ValArray/valarray_notes.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ int main() {
102102
auto v4 = v3.apply([](int x) -> int { return x / 2; });
103103
log << "v4 is of type std::valarray<int>: "
104104
<< std::is_same_v<decltype(v4), std::valarray<int>> << "\n";
105-
log << typeid(v4).name() << "\n";
105+
log << typeid(v4).name() << "\n"; // class std::valarray<int>
106106
#if defined(__GNUC__)
107107
log << type_name<decltype(v4)>() << "\n";
108108
#elif defined(_MSC_VER)

0 commit comments

Comments
 (0)