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

build: Add missing header includes #9010

Merged
merged 1 commit into from
Dec 12, 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
4 changes: 3 additions & 1 deletion layers/external/inplace_function.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,11 @@

#pragma once

#include <cstddef>
#include <functional>
#include <memory>
#include <type_traits>
#include <utility>
#include <functional>

#ifndef SG14_INPLACE_FUNCTION_THROW
#define SG14_INPLACE_FUNCTION_THROW(x) throw(x)
Expand Down
1 change: 1 addition & 0 deletions layers/gpu/resources/gpuav_vulkan_objects.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include "containers/custom_containers.h"
#include "vma/vma.h"

#include <typeinfo>
#include <unordered_map>
#include <vector>

Expand Down
15 changes: 8 additions & 7 deletions layers/utils/vk_layer_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,19 @@

#pragma once

#include <algorithm>
#include <atomic>
#include <bitset>
#include <cassert>
#include <cctype>
#include <cmath>
#include <cstring>
#include <memory>
#include <optional>
#include <shared_mutex>
#include <string>
#include <type_traits>
#include <vector>
#include <bitset>
#include <shared_mutex>
#include <optional>
#include <cmath>
#include <atomic>
#include <memory>
#include <algorithm>

#include <vulkan/utility/vk_format_utils.h>
#include <vulkan/utility/vk_concurrent_unordered_map.hpp>
Expand Down
Loading