You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@qpid.apache.org by "Steve Huston (JIRA)" <qp...@incubator.apache.org> on 2008/10/16 23:30:46 UTC

[jira] Created: (QPID-1369) Inconsistent reference to ConnectionSettings

Inconsistent reference to ConnectionSettings
--------------------------------------------

                 Key: QPID-1369
                 URL: https://issues.apache.org/jira/browse/QPID-1369
             Project: Qpid
          Issue Type: Bug
          Components: C++ Client
    Affects Versions: M3
         Environment: Windows
            Reporter: Steve Huston
            Assignee: Steve Huston


In the C++ client code there are a few places where ConnectionSettings is forward-referenced ala

class ConnectionSettings;

However, ConnectionSettings is a struct. This difference causes Microsoft C++ to issue a warning that ConnectionSettings was first seen as a struct, then a class. Changing the forward reference from class to struct resolves this.


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (QPID-1369) Inconsistent reference to ConnectionSettings

Posted by "Steve Huston (JIRA)" <qp...@incubator.apache.org>.
     [ https://issues.apache.org/jira/browse/QPID-1369?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Steve Huston resolved QPID-1369.
--------------------------------

       Resolution: Fixed
    Fix Version/s: M4

Fixed; svn revision 705369

> Inconsistent reference to ConnectionSettings
> --------------------------------------------
>
>                 Key: QPID-1369
>                 URL: https://issues.apache.org/jira/browse/QPID-1369
>             Project: Qpid
>          Issue Type: Bug
>          Components: C++ Client
>    Affects Versions: M3
>         Environment: Windows
>            Reporter: Steve Huston
>            Assignee: Steve Huston
>             Fix For: M4
>
>         Attachments: struct.diff
>
>
> In the C++ client code there are a few places where ConnectionSettings is forward-referenced ala
> class ConnectionSettings;
> However, ConnectionSettings is a struct. This difference causes Microsoft C++ to issue a warning that ConnectionSettings was first seen as a struct, then a class. Changing the forward reference from class to struct resolves this.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (QPID-1369) Inconsistent reference to ConnectionSettings

Posted by "Steve Huston (JIRA)" <qp...@incubator.apache.org>.
     [ https://issues.apache.org/jira/browse/QPID-1369?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Steve Huston updated QPID-1369:
-------------------------------

    Attachment: struct.diff

Attached diff resolves this issue.

> Inconsistent reference to ConnectionSettings
> --------------------------------------------
>
>                 Key: QPID-1369
>                 URL: https://issues.apache.org/jira/browse/QPID-1369
>             Project: Qpid
>          Issue Type: Bug
>          Components: C++ Client
>    Affects Versions: M3
>         Environment: Windows
>            Reporter: Steve Huston
>            Assignee: Steve Huston
>         Attachments: struct.diff
>
>
> In the C++ client code there are a few places where ConnectionSettings is forward-referenced ala
> class ConnectionSettings;
> However, ConnectionSettings is a struct. This difference causes Microsoft C++ to issue a warning that ConnectionSettings was first seen as a struct, then a class. Changing the forward reference from class to struct resolves this.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.