summaryrefslogtreecommitdiff
path: root/include/jvmfwk
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-03-29 08:04:38 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-03-29 08:04:38 +0200
commitf2c2e7a71ea653993ba1349de7b36dfe92c5c62d (patch)
tree9dbf66a6a10a7efdcb2d5c3682e9d98804745849 /include/jvmfwk
parent02fb3fd0533222dfea5b6b9232425a5e28cd340f (diff)
Avoid reserved identifier
Change-Id: I77c80c1aec96d520d1c0a3d95a2b91d3bccb3fff
Diffstat (limited to 'include/jvmfwk')
-rw-r--r--include/jvmfwk/framework.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/jvmfwk/framework.hxx b/include/jvmfwk/framework.hxx
index 9a3b88479ab7..3edaaa54c961 100644
--- a/include/jvmfwk/framework.hxx
+++ b/include/jvmfwk/framework.hxx
@@ -185,7 +185,7 @@
/** error codes which are returned by functions of this API.
*/
-typedef enum _javaFrameworkError
+enum javaFrameworkError
{
JFW_E_NONE,
JFW_E_ERROR,
@@ -201,7 +201,7 @@ typedef enum _javaFrameworkError
JFW_E_VM_CREATION_FAILED,
JFW_E_CONFIGURATION,
JFW_E_DIRECT_MODE
-} javaFrameworkError;
+};
/** an instance of this struct represents an installation of a Java
Runtime Environment (JRE).