From 703310a58d4aa059bbf84023c96b2dda82bcc64d Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Tue, 7 Dec 2010 00:33:36 +0000 Subject: [PATCH] Minor warning fixes --- coding/coding_tests/reader_test.cpp | 2 +- coding/coding_tests/writer_test.cpp | 2 +- testing/testingmain.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/coding/coding_tests/reader_test.cpp b/coding/coding_tests/reader_test.cpp index f8c10cc0f7..22de5d5476 100644 --- a/coding/coding_tests/reader_test.cpp +++ b/coding/coding_tests/reader_test.cpp @@ -62,7 +62,7 @@ UNIT_TEST(FileReaderNonExistentFileTest) FileReader reader("skjhfaxniauiuq2bmnszmn093sklsd"); TEST(false, ("Exception should be thrown!")); } - catch (FileReader::OpenException & e) + catch (FileReader::OpenException &) { } } diff --git a/coding/coding_tests/writer_test.cpp b/coding/coding_tests/writer_test.cpp index 7aef9967a2..e3d7102d6e 100644 --- a/coding/coding_tests/writer_test.cpp +++ b/coding/coding_tests/writer_test.cpp @@ -107,7 +107,7 @@ UNIT_TEST(FileWriter_DeleteFile) FileReader reader(fileName); TEST(false, ("Exception should be thrown!")); } - catch (FileReader::OpenException & e) + catch (FileReader::OpenException & ) { } } diff --git a/testing/testingmain.cpp b/testing/testingmain.cpp index 934da91019..7d3e82f23d 100644 --- a/testing/testingmain.cpp +++ b/testing/testingmain.cpp @@ -61,7 +61,7 @@ int main() ++numFailedTests; } - } catch (TestFailureException const & ex) + } catch (TestFailureException const & ) { testResults[iTest] = false; ++numFailedTests;