Skip to content

Commit

Permalink
Added semicolon for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
jwyles committed Feb 1, 2019
1 parent b0e8700 commit 248552e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bfs.cu
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ namespace cugraph {
deterministic = false;
//Working data
//Each vertex can be in the frontier at most once
ALLOC_MANAGED_TRY(&frontier, n * sizeof(IndexType), nullptr)
ALLOC_MANAGED_TRY(&frontier, n * sizeof(IndexType), nullptr);

//We will update frontier during the execution
//We need the orig to reset frontier, or cudaFree
Expand Down

0 comments on commit 248552e

Please sign in to comment.