fix compiler warnings from gcc-4.9 + -Wunused-variable
[folly.git] / folly / io / test / IOBufQueueTest.cpp
index 1106c515ca4a726984aa9ddce7578a8704618317..8afed780a683cc2fe0822a8b5a7c13a601b3e5e2 100644 (file)
@@ -156,7 +156,6 @@ TEST(IOBufQueue, Split) {
   queue.append(stringToIOBuf(SCL("Hello,")));
   queue.append(stringToIOBuf(SCL(" World")));
   checkConsistency(queue);
-  bool exceptionFired = false;
   EXPECT_THROW({prefix = queue.split(13);}, std::underflow_error);
   checkConsistency(queue);
 }