Android changes (#1194)

* Update to latest MacOS image

* Minor android cleanup

Removed no longer required std functionality
This commit is contained in:
Sascha Willems 2025-02-28 18:02:15 +01:00 committed by GitHub
parent 495a135c64
commit 42fc44114a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 20 additions and 32 deletions

View file

@ -1,7 +1,7 @@
/*
* Android Vulkan function pointer prototypes
*
* Copyright (C) 2016-2024 by Sascha Willems - www.saschawillems.de
* Copyright (C) 2016-2025 by Sascha Willems - www.saschawillems.de
*
* This code is licensed under the MIT license (MIT) (http://opensource.org/licenses/MIT)
*/
@ -29,16 +29,6 @@
#include <memory>
#include <string>
// Missing from the NDK
namespace std
{
template<typename T, typename... Args>
std::unique_ptr<T> make_unique(Args&&... args)
{
return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
}
}
// Global reference to android application object
extern android_app* androidApp;