Skip to content

Commit f619024

Browse files
author
AidanBeltonS
authored
[SYCL] Remove unneeded semicolons (#8280)
1 parent d23287f commit f619024

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ggml/src/ggml-sycl/dpct/helper.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ namespace dpct
255255
void set_pitch(size_t pitch) { _pitch = pitch; }
256256

257257
size_t get_x() { return _x; }
258-
void set_x(size_t x) { _x = x; };
258+
void set_x(size_t x) { _x = x; }
259259

260260
size_t get_y() { return _y; }
261261
void set_y(size_t y) { _y = y; }
@@ -1056,7 +1056,7 @@ namespace dpct
10561056
#error "Only support Windows and Linux."
10571057
#endif
10581058
next_free = mapped_address_space;
1059-
};
1059+
}
10601060
10611061
public:
10621062
using buffer_id_t = int;
@@ -1077,7 +1077,7 @@ namespace dpct
10771077
#else
10781078
#error "Only support Windows and Linux."
10791079
#endif
1080-
};
1080+
}
10811081
10821082
mem_mgr(const mem_mgr &) = delete;
10831083
mem_mgr &operator=(const mem_mgr &) = delete;

0 commit comments

Comments
 (0)