From acc7d1b99fce4eed03cb297f71105a7aa0ed64c3 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Wed, 12 Feb 2014 16:19:54 +0200 Subject: [PATCH 1/2] Add index.html --- index.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 index.html diff --git a/index.html b/index.html new file mode 100644 index 0000000..d59ad22 --- /dev/null +++ b/index.html @@ -0,0 +1,15 @@ + + + + + +Automatic redirection failed, please go to +assert.html. + + + From c6d7ab8f8f1507c954867d48335f6c46239bc63a Mon Sep 17 00:00:00 2001 From: Alex Henrie Date: Fri, 30 Jan 2015 15:22:48 -0700 Subject: [PATCH 2/2] Correct spelling of "suppress" --- test/assert_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/assert_test.cpp b/test/assert_test.cpp index 26051ac..3233828 100644 --- a/test/assert_test.cpp +++ b/test/assert_test.cpp @@ -58,7 +58,7 @@ void test_disabled() BOOST_ASSERT(p); BOOST_ASSERT_MSG(p, "msg"); - // supress warnings + // suppress warnings p = &x; p = &p; }