[hydra-commits] kpfleming: branch ice/slice-preserving-translators r594 - /ice/branches/slice...
SVN commits to the Hydra project
hydra-commits at lists.digium.com
Mon Apr 26 10:41:02 CDT 2010
Author: kpfleming
Date: Mon Apr 26 10:41:01 2010
New Revision: 594
URL: https://origsvn.digium.com/svn-view/hydra?view=rev&rev=594
Log:
Fix some stuff the Windows C++ compiler didn't like.
Modified:
ice/branches/slice-preserving-translators/cpp/test/Ice/slicing/exceptions/TestI.cpp
Modified: ice/branches/slice-preserving-translators/cpp/test/Ice/slicing/exceptions/TestI.cpp
URL: https://origsvn.digium.com/svn-view/hydra/ice/branches/slice-preserving-translators/cpp/test/Ice/slicing/exceptions/TestI.cpp?view=diff&rev=594&r1=593&r2=594
==============================================================================
--- ice/branches/slice-preserving-translators/cpp/test/Ice/slicing/exceptions/TestI.cpp (original)
+++ ice/branches/slice-preserving-translators/cpp/test/Ice/slicing/exceptions/TestI.cpp Mon Apr 26 10:41:01 2010
@@ -165,7 +165,7 @@
{
client->baseAsBase();
}
- catch (const Base& ex)
+ catch (const Base&)
{
throw;
}
@@ -178,7 +178,7 @@
{
client->unknownDerivedAsBase();
}
- catch (const Base& ex)
+ catch (const Base&)
{
throw;
}
@@ -191,7 +191,7 @@
{
client->unsliceableDerivedAsBase();
}
- catch (const Base& ex)
+ catch (const Base&)
{
throw;
}
More information about the asterisk-scf-commits
mailing list