fix -Wvexing-parse
authorIgor Sugak <sugak@fb.com>
Mon, 2 Oct 2017 20:42:09 +0000 (13:42 -0700)
committerFacebook Github Bot <facebook-github-bot@users.noreply.github.com>
Mon, 2 Oct 2017 20:57:57 +0000 (13:57 -0700)
commitd6fe55fe6fa45e5f28127ecd94fcfa7d978dcad6
tree29c2d8586d55972966a9c5662e9f80d8385c647b
parent1b0dfd663244c1d743052072a507f1b9e1f88d05
fix -Wvexing-parse

Summary:
```lang=cpp
folly/test/stl_tests/StlVectorTest.cpp:1975:11: error: parentheses were disambiguated as redundant parentheses around declaration of variable named 'm' [-Werror,-Wvexing-parse]
    Vector(m);
          ^~~
folly/test/stl_tests/StlVectorTest.cpp:1975:11: note: add a variable name to declare a 'Vector' initialized with 'm'
    Vector(m);
          ^
           varname
folly/test/stl_tests/StlVectorTest.cpp:1975:5: note: add enclosing parentheses to perform a function-style cast
    Vector(m);
    ^
    (        )
folly/test/stl_tests/StlVectorTest.cpp:1975:11: note: remove parentheses to silence this warning
    Vector(m);
          ^ ~

1 error generated.
```

Reviewed By: Gownta

Differential Revision: D5955613

fbshipit-source-id: 3015570ce111603b3561914d07b55365a221c686
folly/test/stl_tests/StlVectorTest.cpp