Skip to content

Commit

Permalink
Do not use DebugBreak directly
Browse files Browse the repository at this point in the history
  • Loading branch information
crsib committed Dec 19, 2023
1 parent c8e45bb commit f247232
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion libraries/lib-cloud-audiocom/sync/CloudProjectsDatabase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
**********************************************************************/
#include "CloudProjectsDatabase.h"

#include <cassert>

#include "AppEvents.h"
#include "CodeConversions.h"
#include "FileNames.h"
Expand Down Expand Up @@ -158,7 +160,7 @@ void CloudProjectsDatabase::UpdateProjectBlockList(

if (!result.IsOk())
{
DebugBreak();
assert(false);
}
}

Expand Down

0 comments on commit f247232

Please sign in to comment.