summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2015-03-10 09:04:54 +0100
committerMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2015-03-10 09:04:54 +0100
commitf8ad84a91d650d8574f4e7fca344d75cedbcd456 (patch)
tree66b3f0280cddab5c99336020250037c699d74257
parentee4592ebb5a23fd4b25c37502aa9a6eda0882a67 (diff)
Remove trailing comma in last enum valueo
g++ does not like that.
-rw-r--r--ufo/ufo-buffer.h2
-rw-r--r--ufo/ufo-gpu-node.h2
-rw-r--r--ufo/ufo-resources.h2
-rw-r--r--ufo/ufo-task-graph.h2
4 files changed, 4 insertions, 4 deletions
diff --git a/ufo/ufo-buffer.h b/ufo/ufo-buffer.h
index 758043c..d298c7f 100644
--- a/ufo/ufo-buffer.h
+++ b/ufo/ufo-buffer.h
@@ -99,7 +99,7 @@ typedef enum {
UFO_BUFFER_DEPTH_16S,
UFO_BUFFER_DEPTH_32S,
UFO_BUFFER_DEPTH_32U,
- UFO_BUFFER_DEPTH_32F,
+ UFO_BUFFER_DEPTH_32F
} UfoBufferDepth;
typedef enum {
diff --git a/ufo/ufo-gpu-node.h b/ufo/ufo-gpu-node.h
index f6e5e6b..ce0c83b 100644
--- a/ufo/ufo-gpu-node.h
+++ b/ufo/ufo-gpu-node.h
@@ -72,7 +72,7 @@ struct _UfoGpuNodeClass {
*/
typedef enum {
UFO_GPU_NODE_INFO_GLOBAL_MEM_SIZE = 0,
- UFO_GPU_NODE_INFO_LOCAL_MEM_SIZE,
+ UFO_GPU_NODE_INFO_LOCAL_MEM_SIZE
} UfoGpuNodeInfo;
UfoNode *ufo_gpu_node_new (gpointer context,
diff --git a/ufo/ufo-resources.h b/ufo/ufo-resources.h
index 89c26f1..412822d 100644
--- a/ufo/ufo-resources.h
+++ b/ufo/ufo-resources.h
@@ -63,7 +63,7 @@ typedef enum {
UFO_DEVICE_CPU = 1 << 0,
UFO_DEVICE_GPU = 1 << 1,
UFO_DEVICE_ACC = 1 << 2,
- UFO_DEVICE_ALL = UFO_DEVICE_CPU | UFO_DEVICE_GPU | UFO_DEVICE_ACC,
+ UFO_DEVICE_ALL = UFO_DEVICE_CPU | UFO_DEVICE_GPU | UFO_DEVICE_ACC
} UfoDeviceType;
/**
diff --git a/ufo/ufo-task-graph.h b/ufo/ufo-task-graph.h
index 55d9aca..025bcba 100644
--- a/ufo/ufo-task-graph.h
+++ b/ufo/ufo-task-graph.h
@@ -47,7 +47,7 @@ typedef struct _UfoTaskGraphPrivate UfoTaskGraphPrivate;
typedef enum {
UFO_TASK_GRAPH_ERROR_JSON_KEY,
- UFO_TASK_GRAPH_ERROR_BAD_INPUTS,
+ UFO_TASK_GRAPH_ERROR_BAD_INPUTS
} UfoTaskGraphError;
/**