diff options
author | nandika | 2012-12-28 09:19:05 +0000 |
---|---|---|
committer | nandika | 2012-12-28 09:19:05 +0000 |
commit | e85766b2e67d213124b67815c740fdf18016988c (patch) | |
tree | c49b558525afad78e751f88469077f1ba2fe44ab | |
parent | 10b5482cd03e243dda477407212ea8ccccd5f849 (diff) | |
download | axis2c-e85766b2e67d213124b67815c740fdf18016988c.tar.gz axis2c-e85766b2e67d213124b67815c740fdf18016988c.tar.bz2 |
Fix for issue AXIS2C-1553
git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@1426438 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | axiom/include/axiom_element.h | 3 | ||||
-rw-r--r-- | axiom/src/om/om_element.c | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/axiom/include/axiom_element.h b/axiom/include/axiom_element.h index 90e4881..a8dd669 100644 --- a/axiom/include/axiom_element.h +++ b/axiom/include/axiom_element.h @@ -464,6 +464,7 @@ extern "C" axiom_element_t * om_element, const axutil_env_t * env, axiom_node_t * element_node); +#endif /** * checks for the namespace in the context of this element @@ -609,7 +610,7 @@ extern "C" axiom_element_t * om_element, const axutil_env_t * env, axiom_node_t * element_node); -#endif + /** @} */ #ifdef __cplusplus diff --git a/axiom/src/om/om_element.c b/axiom/src/om/om_element.c index 1e92a2d..84dd5c3 100644 --- a/axiom/src/om/om_element.c +++ b/axiom/src/om/om_element.c @@ -1663,7 +1663,7 @@ axiom_element_build( } return AXIS2_SUCCESS; } - +#endif /** * checks for the namespace in the context of this element * with the given prefix @@ -1899,4 +1899,4 @@ axiom_element_to_string( { return axiom_node_to_string(element_node, env); } -#endif + |