Skip to content

Commit

Permalink
delete
Browse files Browse the repository at this point in the history
  • Loading branch information
acalcutt committed Jan 18, 2025
1 parent bfbe6fb commit 2ce7245
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/mbgl/mtl/index_buffer_resource.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace mtl {

class IndexBufferResource : public gfx::IndexBufferResource {
public:
IndexBufferResource() noexcept = default;
IndexBufferResource() noexcept = delete;
IndexBufferResource(BufferResource&&) noexcept;
IndexBufferResource(IndexBufferResource&& other) noexcept
: buffer(std::move(other.buffer)) {}
Expand Down
2 changes: 1 addition & 1 deletion include/mbgl/mtl/vertex_buffer_resource.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace mtl {

class VertexBufferResource : public gfx::VertexBufferResource {
public:
VertexBufferResource() noexcept = default;
VertexBufferResource() noexcept = delete;
VertexBufferResource(BufferResource&&) noexcept;
VertexBufferResource(VertexBufferResource&& other) noexcept
: buffer(std::move(other.buffer)) {}
Expand Down

0 comments on commit 2ce7245

Please sign in to comment.