Results 1 to 1 of 1

Thread: Patch #2 for Ice 3.1

  1. #1
    michi's Avatar
    michi is offline Registered User
    Name: Michi Henning
    Organization: Triodia Technologies
    Project: I have a passing interest in Ice :-)
    Join Date
    Feb 2003
    Location
    Brisbane, Australia
    Posts
    1,055

    Patch #2 for Ice 3.1

    Attached is patch #2 for Ice 3.1. It affects only Ice for C++. The patch includes patch #1, and you can apply this patch whether or not you previously installed patch #1.

    You need to install this patch only if you have a class with a member that is an interface by value:

    Code:
    interface I
    {
        void op();
    };
    
    class C
    {
        I myI; // Note: I, not I*. Generates bad code.
    };
    Note that if you have a class with a member that is a class by value, there is no problem.

    Code:
    class I
    {
        void op();
    };
    
    class C
    {
        I myI; // Note: I, not I*. Works fine without the patch.
    };
    The patch is binary incompatible, so you need to recompile Ice for C++ as well as your application if you apply this patch.

    To apply the patch, unzip the attached archive at the top of your Ice for C++ source distribution and rebuild.

    This patch will be included in Ice 3.2. Unless you have pressing need to apply it, I suggest you wait until we release Ice 3.2.

    Cheers,

    Michi.
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Ice.Patch.Application and Ice.Patch.Server
    By richardma in forum Help Center
    Replies: 1
    Last Post: 11-15-2007, 09:52 AM
  2. Replies: 1
    Last Post: 08-01-2006, 06:26 AM
  3. Patch for Ice for C++ 3.0.0
    By michi in forum Patches
    Replies: 4
    Last Post: 02-20-2006, 07:49 PM
  4. Patch for Ice for C#, 3.0.1
    By michi in forum Patches
    Replies: 0
    Last Post: 02-16-2006, 12:12 AM
  5. Patch 1 for Ice for C#
    By michi in forum Patches
    Replies: 0
    Last Post: 07-28-2004, 12:45 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •