Replace MSVC __debugbreak with cross-compiler DEBUG_BREAK macro. (#1540)
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
#pragma once
|
||||
#include "Debug.h"
|
||||
using namespace std;
|
||||
class InputStream;
|
||||
|
||||
@@ -598,7 +599,7 @@ public:
|
||||
|
||||
if ( (m_falsePositives.size() > 0) || (m_falseNegatives.size() > 0) )
|
||||
{
|
||||
__debugbreak();
|
||||
DEBUG_BREAK();
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user