From: Vadim Zeitlin Date: Sat, 28 Oct 2006 17:04:52 +0000 (+0000) Subject: fix gcc compilation warning X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d581cac5e874ffa151576c61da5e56aca25ab864 fix gcc compilation warning git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42584 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/tests/datetime/datetimetest.cpp b/tests/datetime/datetimetest.cpp index e9e430998e..feddc48085 100644 --- a/tests/datetime/datetimetest.cpp +++ b/tests/datetime/datetimetest.cpp @@ -671,6 +671,10 @@ void DateTimeTestCase::TestTimeFormat() case CompareTime: CPPUNIT_ASSERT( dt.IsSameTime(dt2) ); break; + + case CompareNone: + wxFAIL_MSG( _T("unexpected") ); + break; } } }