diff options
author | Galina Kistanova <gkistanova@gmail.com> | 2017-06-04 05:31:03 +0000 |
---|---|---|
committer | Galina Kistanova <gkistanova@gmail.com> | 2017-06-04 05:31:03 +0000 |
commit | fccd2eac1637641b5701cb15476b60d353c1d758 (patch) | |
tree | 2f886de41fffd044ad4eba667a4ea840a46d8186 /llvm | |
parent | 9417735f109139fe56f19b23be6360e5a3548ea5 (diff) | |
download | bcm5719-llvm-fccd2eac1637641b5701cb15476b60d353c1d758.tar.gz bcm5719-llvm-fccd2eac1637641b5701cb15476b60d353c1d758.zip |
Fixed warning: must specify at least one argument for '...' parameter.
llvm-svn: 304677
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/unittests/Support/MemoryTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/Support/MemoryTest.cpp b/llvm/unittests/Support/MemoryTest.cpp index f439cb2af9b..140219ffd1d 100644 --- a/llvm/unittests/Support/MemoryTest.cpp +++ b/llvm/unittests/Support/MemoryTest.cpp @@ -360,6 +360,6 @@ unsigned MemoryFlags[] = { INSTANTIATE_TEST_CASE_P(AllocationTests, MappedMemoryTest, - ::testing::ValuesIn(MemoryFlags)); + ::testing::ValuesIn(MemoryFlags),); } // anonymous namespace |