Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing includes for strict non-unity build #420

Merged
merged 1 commit into from
May 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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