Fix missing semicolons
This commit is contained in:
@@ -14,7 +14,7 @@ struct Guid;
|
||||
/// </summary>
|
||||
API_STRUCT(NoDefault) struct FLAXENGINE_API LogContextData
|
||||
{
|
||||
DECLARE_SCRIPTING_TYPE_STRUCTURE(LogContextData)
|
||||
DECLARE_SCRIPTING_TYPE_STRUCTURE(LogContextData);
|
||||
|
||||
/// <summary>
|
||||
/// A GUID for an object which this context applies to.
|
||||
@@ -40,7 +40,7 @@ struct TIsPODType<LogContextData>
|
||||
/// </summary>
|
||||
API_CLASS(Static) class FLAXENGINE_API LogContext
|
||||
{
|
||||
DECLARE_SCRIPTING_TYPE_MINIMAL(LogContext)
|
||||
DECLARE_SCRIPTING_TYPE_MINIMAL(LogContext);
|
||||
|
||||
/// <summary>
|
||||
/// Adds a log context element to the stack to be displayed in warning and error logs.
|
||||
|
||||
@@ -280,7 +280,7 @@ void CmdBufferManagerVulkan::WaitForCmdBuffer(CmdBufferVulkan* cmdBuffer, float
|
||||
void CmdBufferManagerVulkan::PrepareForNewActiveCommandBuffer()
|
||||
{
|
||||
PROFILE_CPU();
|
||||
ASSERT_LOW_LAYER(_activeCmdBuffer == nullptr)
|
||||
ASSERT_LOW_LAYER(_activeCmdBuffer == nullptr);
|
||||
for (int32 i = 0; i < _pool._cmdBuffers.Count(); i++)
|
||||
{
|
||||
auto cmdBuffer = _pool._cmdBuffers.Get()[i];
|
||||
|
||||
Reference in New Issue
Block a user