From 3877219925ac2816d53d10d22f32cac025d6a9b1 Mon Sep 17 00:00:00 2001 From: Beman Date: Sun, 12 May 2013 07:21:37 -0400 Subject: [PATCH] Remove spurious semi-colon. --- test/endian_test.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/endian_test.cpp b/test/endian_test.cpp index c68c551..a2629df 100644 --- a/test/endian_test.cpp +++ b/test/endian_test.cpp @@ -124,7 +124,7 @@ namespace cout << "This machine is little-endian.\n"; # ifndef BOOST_LITTLE_ENDIAN cout << "yet boost/detail/endian.hpp does not define BOOST_LITTLE_ENDIAN.\n" - "This must be fixed for the Boost Endian library to work correctly on this system.\n" + "The Boost Endian library must be revised to work correctly on this system.\n" "Please report this problem to the Boost mailing list.\n"; exit(1); # endif @@ -134,7 +134,7 @@ namespace cout << "This machine is big-endian.\n"; # ifndef BOOST_BIG_ENDIAN cout << "yet boost/detail/endian.hpp does not define BOOST_BIG_ENDIAN.\n" - "This must be fixed for the Boost Endian library to work correctly on this system.\n" + "The Boost Endian library must be revised to work correctly on this system.\n" "Please report this problem to the Boost mailing list.\n"; exit(1); # endif @@ -142,7 +142,7 @@ namespace else { cout << "This machine is neither strict big-endian nor strict little-endian\n" - "The Boost Endian library must be revised to work correctly on this system.\n"; + "The Boost Endian library must be revised to work correctly on this system.\n" "Please report this problem to the Boost mailing list.\n"; exit(1); }