From 8561a8f8a9f082f1dae9015d88f3d5bc1f782608 Mon Sep 17 00:00:00 2001 From: Vyacheslav N Klochkov Date: Tue, 1 Jun 2021 17:33:00 -0700 Subject: [PATCH] [SYCL] Fix syntax error introduced in #3401 Signed-off-by: Vyacheslav N Klochkov --- sycl/include/CL/sycl/queue.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sycl/include/CL/sycl/queue.hpp b/sycl/include/CL/sycl/queue.hpp index a69c7f7c547b5..ae7fcb47e47fa 100644 --- a/sycl/include/CL/sycl/queue.hpp +++ b/sycl/include/CL/sycl/queue.hpp @@ -276,7 +276,7 @@ class __SYCL_EXPORT queue { /// Synchronous errors will be reported through SYCL exceptions. /// @param CodeLoc is the code location of the submit call (default argument) void wait(_CODELOCONLYPARAM(&CodeLoc)) { - _CODELOCARG(&CodeLoc) + _CODELOCARG(&CodeLoc); wait_proxy(CodeLoc); }