Skip to content

Commit

Permalink
build: Add missing header includes
Browse files Browse the repository at this point in the history
  • Loading branch information
atetubou committed Dec 12, 2024
1 parent 828d51a commit 55f3dd0
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
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

0 comments on commit 55f3dd0

Please sign in to comment.