fix -Wunused-variable
authorIgor Sugak <sugak@fb.com>
Tue, 7 Nov 2017 23:59:54 +0000 (15:59 -0800)
committerFacebook Github Bot <facebook-github-bot@users.noreply.github.com>
Wed, 8 Nov 2017 00:25:33 +0000 (16:25 -0800)
commit78a596f109f3eb852620ec0be655894547769555
tree2f9f59a4119def3e5b274831eff882e5f0e6b2a9
parent29ffcc50981fd50dd2ab1a69f8a262c4b7c27ad4
fix -Wunused-variable

Summary:
Exposed by the latest clang:
```lang=bash
folly/test/FixedStringTest.cpp:52:36: error: unused variable 's' [-Werror,-Wunused-variable]
  constexpr folly::FixedString<42> s{"hello world"};
                                   ^
folly/gen/test/StringBenchmark.cpp:176:15: error: unused variable 'line' [-Werror,-Wunused-variable]
  StringPiece line(kLine);
              ^
```

Reviewed By: yfeldblum

Differential Revision: D6264853

fbshipit-source-id: 5cf4b0a8c99eaa31c2499746c70ddc49fdd73074
folly/gen/test/StringBenchmark.cpp
folly/test/FixedStringTest.cpp