Commit f28aa800 by Marcus Winter

mtapi_cpp: fixed clang compiler erros

parent 0e570674
...@@ -2,4 +2,4 @@ ...@@ -2,4 +2,4 @@
#define THIS_NODE_ID 1 #define THIS_NODE_ID 1
#define FIBONACCI_JOB 1 #define FIBONACCI_JOB 1
mtapi_job_hndl_t fibonacciJob; static mtapi_job_hndl_t fibonacciJob;
...@@ -2,4 +2,4 @@ ...@@ -2,4 +2,4 @@
#define THIS_NODE_ID 1 #define THIS_NODE_ID 1
#define FIBONACCI_JOB 1 #define FIBONACCI_JOB 1
embb::mtapi::Job fibonacciJob; static embb::mtapi::Job fibonacciJob;
...@@ -184,7 +184,7 @@ class Queue { ...@@ -184,7 +184,7 @@ class Queue {
) { ) {
return Enqueue(task_id, return Enqueue(task_id,
arguments, internal::SizeOfType<ARGS>(), arguments, internal::SizeOfType<ARGS>(),
results, sizeofinternal::SizeOfType<RES>(), results, internal::SizeOfType<RES>(),
MTAPI_DEFAULT_TASK_ATTRIBUTES, MTAPI_GROUP_NONE); MTAPI_DEFAULT_TASK_ATTRIBUTES, MTAPI_GROUP_NONE);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment