Skip to content

Commit

Permalink
Missing semicolon.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaycedowell authored Aug 22, 2023
1 parent 5aa1f4b commit af5a401
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/memory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ BFstatus bfGetSpace(const void* ptr, BFspace* space) {
#if defined(CUDA_VERSION) && CUDA_VERSION >= 10000
} else {
switch( ptr_attrs.type ) {
case cudaMemoryTypeUnregistered: *space = BF_SPACE_SYSTEM; break
case cudaMemoryTypeUnregistered: *space = BF_SPACE_SYSTEM; break;
case cudaMemoryTypeHost: *space = BF_SPACE_CUDA_HOST; break;
case cudaMemoryTypeDevice: *space = BF_SPACE_CUDA; break;
case cudaMemoryTypeManaged: *space = BF_SPACE_CUDA_MANAGED; break;
Expand Down

0 comments on commit af5a401

Please sign in to comment.