Skip to content

Commit

Permalink
Merge pull request #420 from knapsu/master
Browse files Browse the repository at this point in the history
Missing includes for strict non-unity build
  • Loading branch information
getnamo authored May 20, 2024
2 parents ca55817 + 9733a24 commit c210d1b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Source/CoreUtility/Public/CUOpusCoder.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
// Copyright 2019-current Getnamo. All Rights Reserved

#pragma once

#include "CoreMinimal.h"

#define WITH_OPUS (PLATFORM_WINDOWS || PLATFORM_UNIX || PLATFORM_ANDROID)

#if WITH_OPUS
Expand Down
4 changes: 2 additions & 2 deletions Source/CoreUtility/Public/ICoreUtility.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

#pragma once


DECLARE_LOG_CATEGORY_EXTERN(CoreUtilityLog, Log, All);
#include "CoreMinimal.h"
#include "Modules/ModuleManager.h"

DECLARE_LOG_CATEGORY_EXTERN(CoreUtilityLog, Log, All);

/**
* The public interface to this module. In most cases, this interface is only public to sibling modules
Expand Down
1 change: 1 addition & 0 deletions Source/SIOJson/Private/SIOJLibrary.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#include "SIOJsonObject.h"
#include "Misc/Base64.h"
#include "Engine/Engine.h"
#include "Serialization/JsonSerializer.h"

//////////////////////////////////////////////////////////////////////////
// Helpers
Expand Down
2 changes: 2 additions & 0 deletions Source/SIOJson/Private/SIOJRequestJSON.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
#include "SIOJLibrary.h"
#include "SIOJsonValue.h"
#include "SIOJsonObject.h"
#include "Engine/Engine.h"
#include "Serialization/JsonSerializer.h"

template <class T> void FSIOJLatentAction<T>::Cancel()
{
Expand Down

0 comments on commit c210d1b

Please sign in to comment.