You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-dev@axis.apache.org by "Bill Blough (Jira)" <ji...@apache.org> on 2020/04/07 16:03:00 UTC

[jira] [Updated] (AXIS2C-1380) Generated code won't compile in VS2005

     [ https://issues.apache.org/jira/browse/AXIS2C-1380?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Bill Blough updated AXIS2C-1380:
--------------------------------
    Fix Version/s: 1.7.0

> Generated code won't compile in VS2005
> --------------------------------------
>
>                 Key: AXIS2C-1380
>                 URL: https://issues.apache.org/jira/browse/AXIS2C-1380
>             Project: Axis2-C
>          Issue Type: Bug
>          Components: build system (Windows)
>    Affects Versions: 1.6.0
>         Environment: VS2005
>            Reporter: Alain Beauregard
>            Priority: Major
>             Fix For: 1.7.0
>
>
> In the CADBBeanTemplateSource.xsl template, the code for the _deserialize function has the following lines:
> else
> {
>     axiom_node_t *text_node = NULL;
>     text_node = axiom_node_get_first_child(parent, env);
>     axiom_text_t *text_element = NULL;
> This seems to create a problem with MSVC2005. because the declaration of text_element is done
> after a call to a function. Changing to the following should fix this issue.
> else
> {
>     axiom_node_t *text_node = NULL;
>     axiom_text_t *text_element = NULL;
>     text_node = axiom_node_get_first_child(parent, env);



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: c-dev-unsubscribe@axis.apache.org
For additional commands, e-mail: c-dev-help@axis.apache.org