mirror of
https://github.com/llvm-mirror/libcxx.git
synced 2025-10-24 03:32:35 +08:00
Enable the -Wsign-compare warning to better support MSVC
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@289363 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -46,7 +46,7 @@ int main()
|
||||
std::valarray<T> v(a, N);
|
||||
std::valarray<T> v2 = -v;
|
||||
assert(v2.size() == v.size());
|
||||
for (int i = 0; i < N; ++i)
|
||||
for (unsigned i = 0; i < N; ++i)
|
||||
{
|
||||
assert(v2[i].size() == v[i].size());
|
||||
for (std::size_t j = 0; j < v[i].size(); ++j)
|
||||
|
Reference in New Issue
Block a user