From c19d9fb2bd8eb57ddaf73e7fd31ec645dee3b4f6 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Sun, 21 Jan 2001 05:33:10 +0000 Subject: [PATCH] Added warning suppression and changelog [SVN r8668] --- class_concept_fail_expected.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/class_concept_fail_expected.cpp b/class_concept_fail_expected.cpp index e062c83..9e24471 100644 --- a/class_concept_fail_expected.cpp +++ b/class_concept_fail_expected.cpp @@ -3,6 +3,9 @@ // copyright notice appears in all copies. This software is provided // "as is" without express or implied warranty, and with no claim as // to its suitability for any purpose. +// +// Change Log: +// 20 Jan 2001 - Added warning suppression (David Abrahams) #include @@ -26,5 +29,6 @@ int main() { class_requires_test x; + (void)x; // suppress unused variable warning return 0; }