Skip to content

Commit

Permalink
[SYCL][NFC] Align nd_item members with constructor initialization list (
Browse files Browse the repository at this point in the history
#1521)

Signed-off-by: Alexey Bader <alexey.bader@intel.com>
  • Loading branch information
bader authored Apr 15, 2020
1 parent e3fefa3 commit cc05149
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sycl/include/CL/sycl/nd_item.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,8 @@ template <int dimensions = 1> class nd_item {
: globalItem(GL), localItem(L), Group(GR) {}

private:
item<dimensions, false> localItem;
item<dimensions, true> globalItem;
item<dimensions, false> localItem;
group<dimensions> Group;
};
} // namespace sycl
Expand Down

0 comments on commit cc05149

Please sign in to comment.