[asterisk-scf-commits] asterisk-scf/integration/ice.git branch "slice2cpp-fix-shadow-violations" updated.

Commits to the Asterisk SCF project code repositories asterisk-scf-commits at lists.digium.com
Fri Apr 22 11:56:31 CDT 2011


branch "slice2cpp-fix-shadow-violations" has been updated
       via  e36018867707bae92235da910ec72fa6adfddf10 (commit)
      from  c3d843d61f33cf7b654b3f237ccbb03ec4903928 (commit)

Summary of changes:
 cpp/src/slice2cpp/Gen.cpp |    8 +-------
 1 files changed, 1 insertions(+), 7 deletions(-)


- Log -----------------------------------------------------------------
commit e36018867707bae92235da910ec72fa6adfddf10
Author: Brent Eagles <beagles at digium.com>
Date:   Fri Apr 22 14:24:16 2011 -0230

    Modify the slice2cpp translator to avoid shadow warnings in AMD related
    generated code.

diff --git a/cpp/src/slice2cpp/Gen.cpp b/cpp/src/slice2cpp/Gen.cpp
index 04d0a41..16569d3 100644
--- a/cpp/src/slice2cpp/Gen.cpp
+++ b/cpp/src/slice2cpp/Gen.cpp
@@ -6592,10 +6592,6 @@ Slice::Gen::AsyncImplVisitor::visitOperation(const OperationPtr& p)
         for(r = throws.begin(); r != throws.end(); ++r)
         {
             C << nl;
-            if(r != throws.begin())
-            {
-                C << "else ";
-            }
             C << "if(const " << fixKwd((*r)->scoped()) << "* __ex = dynamic_cast<const " << fixKwd((*r)->scoped())
             << "*>(&ex))";
             C << sb;
@@ -6604,10 +6600,9 @@ Slice::Gen::AsyncImplVisitor::visitOperation(const OperationPtr& p)
             C << nl << "__os()->write(*__ex);";
             C << nl << "__response(false);";
             C << eb;
+            C << nl << "return;";
             C << eb;
         }
-        C << nl << "else";
-        C << sb;
         C.zeroIndent();
         C << nl << "#if defined(_MSC_VER) && (_MSC_VER < 1300) // VC++ 6 compiler bug"; // COMPILERFIX
         C.restoreIndent();
@@ -6620,7 +6615,6 @@ Slice::Gen::AsyncImplVisitor::visitOperation(const OperationPtr& p)
         C << nl << "#endif";
         C.restoreIndent();
         C << eb;
-        C << eb;
     }
 }
 

-----------------------------------------------------------------------


-- 
asterisk-scf/integration/ice.git



More information about the asterisk-scf-commits mailing list