Skip to content
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
2 changes: 1 addition & 1 deletion openmp/libomptarget/include/Shared/SourceInfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#ifndef OMPTARGET_SHARED_SOURCE_INFO_H
#define OMPTARGET_SHARED_SOURCE_INFO_H

#include <stdint.h>
#include <cstdint>
#include <string>

#ifdef _WIN32
Expand Down
3 changes: 1 addition & 2 deletions openmp/libomptarget/include/omptarget.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,10 @@

#include "OpenMP/InternalTypes.h"

#include <cstddef>
#include <cstdint>
#include <deque>
#include <functional>
#include <stddef.h>
#include <stdint.h>
#include <type_traits>

#include "llvm/ADT/SmallVector.h"
Expand Down
2 changes: 1 addition & 1 deletion openmp/libomptarget/plugins-nextgen/common/include/RPC.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

#include "llvm/Support/Error.h"

#include <stdint.h>
#include <cstdint>

namespace llvm::omp::target {
namespace plugin {
Expand Down